Skip to content

Release instructions

J.L Stevens edited this page May 4, 2014 · 7 revisions

How to make a new release of param

  • [Insert important tasks such as review commit log, update release notes, etc!]

  • Add the version number as a tag in git:

    git tag -a 1.0.0 -m "Creating first official version."
    
  • Push the tag to github:

    git push --tags origin master
    
  • Publish on PyPi:

    python setup.py sdist upload
    
  • [Insert important tasks such as update webpage...]

  • Publish Windows exe files on PyPi (from a Windows machine):

    (ensure git is available in your console)
    python setup.py bdist_wininst --plat-name=win32 --user-access-control=auto upload
    python setup.py bdist_wininst --plat-name=win-amd64 --user-access-control=auto upload
    
Clone this wiki locally