Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update docs pypi release #4173

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/src/developers_guide/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,11 @@ source distribution (``sdist``) and pure Python wheel (``bdist_wheel``)::
> conda create -n iris-pypi -c conda-forge --yes pip pyke python setuptools twine wheel
> . activate iris-pypi

Checkout the lastest Iris ``<release>`` tag::
Checkout the appropriate Iris ``<release>`` tag from the appropriate ``<repo>``.
For example, to checkout tag ``v1.0`` from ``upstream``::

> git fetch --tags
> git checkout <release>
> git fetch upstream --tags
> git checkout v1.0

Build the source distribution and wheel from the Iris root directory::

Expand All @@ -131,7 +132,7 @@ To list and check the contents of the binary wheel::
If all seems well, sufficient maintainer privileges will be required to
upload these artifacts to `scitools-iris`_ on PyPI::

> python -m twine upload --repository-url https://upload.pypi.org/legecy/ dist/*
> python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

Ensure that the artifacts are successfully uploaded and available on
`scitools-iris`_ before creating a conda test environment to install Iris
Expand Down