Skip to content

Maintainers' guide

Marco Gorelli edited this page Jul 18, 2020 · 14 revisions

Deploying a new version of the package

  1. Bump the version number:

    bumpversion patch setup.py nbqa/__init__.py
    
  2. Tag:

    git tag -a <version number goes here>
    git push origin <version number goes here>
    
  3. Build:

    python setup.py sdist bdist_wheel
    
  4. Check:

    twine check dist/*
    
  5. Deploy:

    twine upload dist/nbqa-<version number>*
    

Clone this wiki locally