Skip to content

Instantly share code, notes, and snippets.

@leibowitz
leibowitz / get-packages.py
Created December 24, 2021 12:26
Packages versions
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
@leibowitz
leibowitz / flow.md
Last active February 16, 2022 22:39
Development Flow
  • 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 staging
  • if issue found, repeat from the start
  • deploy to production