-
Notifications
You must be signed in to change notification settings - Fork 1k
Release procedures
This wiki has notes on how to release new versions of pvlib-python.
It assumes that the git remote pvlib
points to pvlib/pvlib-python
:
git remote add pvlib git@github.com:pvlib/pvlib-python.git
Before making any releases, you need to double check that your clone is up to date with the pvlib
remote:
git checkout master
git fetch pvlib
git merge pvlib/master --ff-only
If the last step fails you need to git checkout -b dirtymaster; git checkout master; git reset --hard pvlib/master
. Your work is saved in dirtymaster
.
Alternatively, one can use the GitHub Releases interface to accomplish some of the git tag
/git push
steps.
The pvlib test suite contains a decorator that will cause tests to fail if deprecated features are not removed past a specified version.
-
Bring your clone up to date with the
pvlib
remote (see above) -
Make an alpha, beta, or release candidate tag (e.g.
git tag v0.6.0-alpha
orgit tag v0.6.0-rc.1
). See semver.org -
Push the tag to GitHub:
git push pvlib [the-tag-name]
This will trigger TravisCI to run the test suite on the tagged commit and deploy the package to PyPI as a prerelease. -
If necessary, remove any features that correspond to tests that failed due to
pvlibDeprecationWarnings
through the standard pull request process. Repeat the full pre-release procedure with a new tag. No big deal to make multiple pre-releases. -
Test it:
conda create -n pvlibreltest python=3.7
conda activate pvlibreltest
pip install pvlib --pre
python -c 'import pvlib'
- Finalize the whatsnew file using the standard pull request process:
- Add/edit release date
- Add names/usernames of anyone that is missing from the Contributors list. Be sure to include people that created issues or commented on issues/pull-requests.
- Clean up common rst mistakes such as line wraps that are not indented and apostrophes (') instead of back-ticks (`).
Choose one of the options below for making the release.
- Make the GitHub release using the releases page. The tag should be e.g.
v0.6.0
. The title is the version name. The description can be a link to the version-specific whats new section on readthedocs e.g. v0.5.2. TravisCI will build the package and push it to PyPI.
- Bring your clone up to date with the
pvlib
remote (see above) - Create a git tag:
git tag v0.6.0
- Push the tag:
git push pvlib [the-tag-name]
TravisCI will build the package and push it to PyPI. - Make the GitHub release using the releases page. The tag must be the same as was previously pushed. The title is the version name. The description can be a link to the version-specific whats new section on readthedocs e.g. v0.5.2
After the TravisCI build finished, the new version will be installable with pip install pvlib
. Test it!
As of September 2018, TravisCI is configured to automatically push tagged commits to PyPI. So, manual upload should not usually be necessary for pvlib releases. But if you need to...
From the root pvlib-python directory:
- Bring your clone up to date with the
pvlib
remote (see above) - Ensure that your working directory is clean. Make a fresh clone or remove any added files. Carefully run
git clean
if necessary. - Build a source distribution
python setup.py sdist
- Build wheels
python setup.py bdist_wheel --universal
- Upload to PyPI
twine upload dist/*
as described by the PyPA.
The package is now installable with pip install pvlib
. Test it!
- Activate the base conda environment
conda activate base
. - In a non-pvlib directory,
conda skeleton pypi pvlib
. - Add the following packages to
pvlib/meta.yaml
under bothhost
andrun
:- scipy
- pytables
- numba
- ephem
- Add
noarch: python
to thebuild
section. - Build the package for the "noarch" system type (compatible with Linux, Mac, and Windows) and for multiple Python versions.
conda build --py 3.5 --py 3.6 --py 3.7 pvlib/
- Upload to Anaconda.org:
anaconda upload -u pvlib ~/miniconda3/conda-bld/noarch/pvlib-0.6.0a2-py_0.tar.bz2
The package is now installable with conda install -c pvlib pvlib
Test it:
conda create -n pvlibreltest python=3.7 pvlib -c pvlib
conda activate pvlibreltest
python -c 'import pvlib'
Then test it on another kind of operating system, if possible.
- Fork the pvlib-python-feedstock.
- Update the
recipe/meta.yaml
file with the new version and the md5 hash of the .tar.gz file. - Double check the version numbers of packages specified in
recipe/meta.yaml
E.g. numpy, pandas. Update version numbers if necessary. - Make a pull request with the update.
- Complete the check marks on the conda-forge pull request template.
- Merge the pull request (assuming the tests pass).
It often takes hours for conda-forge to build the new package. Eventually you can test it using the same procedure outlined above, but change the package name to pvlib-python
and the channel name to conda-forge
: conda create -n pvlibreltest python=3.7 pvlib-python -c conda-forge
Send an announcement to the pvlib-python google group.
- Edit DOI in README.md to display the Zenodo identifier for the release. The identifier is found at zenodo.org, search for pvlib.
- Make a whatsnew file for the next version.