Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 482 Bytes

release-procedure.md

File metadata and controls

21 lines (12 loc) · 482 Bytes
  • Update changelog in docs/changelog.rst and commit.

  • Tag commit

      git tag -a x.x.x -m "Version x.x.x"
    
  • Push to github

      git push --tags
    
  • Upload to PyPI

      git clean -xfd  # remove all files in directory not in repository
      python setup.py sdist bdist_wheel --universal  # make packages
      twine upload dist/*  # upload packages
    
  • Increase version number

    Change __version__ = 'x.x.x' in arlib/__init__.py

  • Build conda recipe