How to Make a Release¶
A core developer should use the following steps to create a release X.Y.Z of pynwb.
Note
Since the pynwb wheels do not include compiled code, they are considered pure and could be generated on any supported platform.
That said, considering the instructions below have been tested on a Linux system, they may have to be adapted to work on macOS or Windows.
Prerequisites¶
- All CI tests are passing on CircleCI and Azure Pipelines.
- You have a GPG signing key.
Documentation conventions¶
The commands reported below should be evaluated in the same terminal session.
Commands to evaluate starts with a dollar sign. For example:
$ echo "Hello"
Hello
means that echo "Hello"
should be copied and evaluated in the terminal.
Setting up environment¶
First, register for an account on PyPI.
If not already the case, ask to be added as a
Package Index Maintainer
.Create a
~/.pypirc
file with your login credentials:[distutils] index-servers = pypi pypitest [pypi] username=<your-username> password=<your-password> [pypitest] repository=https://test.pypi.org/legacy/ username=<your-username> password=<your-password>
where<your-username>
and<your-password>
correspond to your PyPI account.
PyPI: Step-by-step¶
- Make sure that all CI tests are passing on CircleCI and Azure Pipelines.
- List all tags sorted by version
$ git tag -l | sort -V
- Choose the next release version number
$ release=X.Y.ZWarning
To ensure the packages are uploaded on PyPI, tags must match this regular expression:
^[0-9]+(\.[0-9]+)*(\.post[0-9]+)?$
.
- Download latest sources
$ cd /tmp && git clone --recurse-submodules git@github.com:NeurodataWithoutBorders/pynwb && cd pynwb
- Tag the release
$ git tag --sign -m "pynwb ${release}" ${release} origin/devWarning
This step requires a GPG signing key.
- Publish the release tag
$ git push origin ${release}Important
This will trigger builds on each CI services and automatically upload the wheels and source distribution on PyPI.
- Check the status of the builds on CircleCI and Azure Pipelines.
- Once the builds are completed, check that the distributions are available on PyPI and that a new GitHub release was created.
- Create a clean testing environment to test the installation
$ mkvirtualenv pynwb-${release}-install-test && \ pip install pynwb && \ python -c "import pynwb; print(pynwb.__version__)"Note
If the
mkvirtualenv
command is not available, this means you do not have virtualenvwrapper installed, in that case, you could either install it or directly use virtualenv or venv.
- Cleanup
$ deactivate && \ rm -rf dist/* && \ rmvirtualenv pynwb-${release}-install-test
Conda: Step-by-step¶
Warning
Publishing on conda requires you to have corresponding package version uploaded on PyPI. So you have to do the PypI and Github release before you do the conda release.
In order to release a new version on conda-forge, follow the steps below:
- Choose the next release version number (that matches with the pypi version that you already published)
$ release=X.Y.Z
- Fork pynwb-feedstock
First step is to fork pynwb-feedstock repository. This is the recommended best practice by conda.
Clone forked feedstock
Fill the YOURGITHUBUSER part.
$ cd /tmp && git clone https://github.com/YOURGITHUBUSER/pynwb-feedstock.git
Download corresponding source for the release version
$ cd /tmp && \ wget https://github.com/NeurodataWithoutBorders/pynwb/releases/download/$release/pynwb-$release.tar.gz
Create a new branch
$ cd pynwb-feedstock && \ git checkout -b $release
Modify
meta.yaml
Update the version string and sha256.
We have to modify the sha and the version string in the
meta.yaml
file.For linux flavors:
$ sed -i "2s/.*/{% set version = \"$release\" %}/" recipe/meta.yaml $ sha=$(openssl sha256 /tmp/pynwb-$release.tar.gz | awk '{print $2}') $ sed -i "3s/.*/{$ set sha256 = \"$sha\" %}/" recipe/meta.yaml
For macOS:
$ sed -i -- "2s/.*/{% set version = \"$release\" %}/" recipe/meta.yaml $ sha=$(openssl sha256 /tmp/pynwb-$release.tar.gz | awk '{print $2}') $ sed -i -- "3s/.*/{$ set sha256 = \"$sha\" %}/" recipe/meta.yaml
Push the changes
$ git push origin $release
Create a Pull Request
Create a pull request against the main repository. If the tests are passed a new release will be published on Anaconda cloud.