Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 359 Bytes

DEVELOPMENT.md

File metadata and controls

20 lines (18 loc) · 359 Bytes

This file contains development notes for myself.

How to make a new release

  • raise version number in setup.py.
  • Tag it:
    git tag -a v0.0.x
    [add changelog message]
    git push origin v0.0.x
    
  • Build the wheel and source distribution:
    python -m build
    
  • Upload to PyPI:
    twine upload dist/*