Skip to content
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
5 changes: 2 additions & 3 deletions docs/src/developers_guide/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ To do this perform the following steps.
Create a conda environment with the appropriate conda packages to build the
source distribution (``sdist``) and pure Python wheel (``bdist_wheel``)::

> conda create -n iris-pypi -c conda-forge --yes pip python setuptools twine wheel
> conda create -n iris-pypi -c conda-forge --yes build twine
> . activate iris-pypi

Checkout the appropriate Iris ``<release>`` tag from the appropriate ``<repo>``.
Expand All @@ -149,7 +149,7 @@ For example, to checkout tag ``v1.0`` from ``upstream``::

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

> python setup.py sdist bdist_wheel
> python -m build

This ``./dist`` directory should now be populated with the source archive
``.tar.gz`` file, and built distribution ``.whl`` file.
Expand All @@ -175,7 +175,6 @@ from PyPI::
> conda deactivate
> conda env create --file ./requrements/ci/iris.yml
> . activate iris-dev
> conda install -c conda-forge pip
> python -m pip install --no-deps scitools-iris

For further details on how to test Iris, see :ref:`developer_running_tests`.
Expand Down