- create branch (from master)
 - work on branch
 - deploy to staging (merge onto staging branch) for testing
 - if issue found, repeat step 2/3
 - create Pull Request when ready to merge (to master)
 - code reviewed (and deal with comments)
 - merged to master
 deploy to stagingif issue found, repeat from the start- deploy to production
 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import argparse | |
| import pkg_resources | |
| from datetime import datetime | |
| from distutils.version import LooseVersion | |
| import requests | |
| from packaging.version import LegacyVersion | |
| from packaging.specifiers import SpecifierSet | |
OlderNewer