-
Notifications
You must be signed in to change notification settings - Fork 97
Creating a new release
Jakub Kaczmarzyk edited this page Jun 11, 2018
·
9 revisions
Follow PEP 440.
- Create a new branch
x.y.z
. - Change the version number in
neurodocker/version.py
- Update the examples in
README.md
- Tag
x.y.z
branch asx.y.z
(usegit tag -a
) - Build wheel (
python setup.py bdist_wheel
) - Test installation of wheel in fresh python3 docker container
- Upload wheel file to PyPi with
twine upload dist/*
- Build new Docker container and upload to DockerHub
Adapted from scikit-learn's wiki.