Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Latest commit

 

History

History
19 lines (16 loc) · 634 Bytes

HOWTO_PIP.md

File metadata and controls

19 lines (16 loc) · 634 Bytes

How to put a new version on pypi.python.org

So that the package maintainer won't have to google it every time.

  1. git checkout master
  2. git pull
  3. Update version number in setup.py
  4. git add setup.py
  5. git commit
  6. git push
  7. git tag X.X.X -m "vX.X.X"
  8. git push --tags
  9. python setup.py sdist upload -r pypitest
  10. Check that things look right on https://test.pypi.org/project/slacker_log_handler/
  11. python setup.py sdist upload -r pypi
  12. Check that things look right on https://pypi.org/project/slacker-log-handler/