Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 427 Bytes

release-procedure.md

File metadata and controls

17 lines (10 loc) · 427 Bytes
  • Update changelog in docs/changelog.rst

  • Bump version in sparse/version.py and commit.

  • Tag commit

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

    git push pydata master --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