From 15280e8894271d9a984912a37ba1f990d7b4b0a4 Mon Sep 17 00:00:00 2001 From: Keewis Date: Wed, 8 Jun 2022 11:28:09 +0200 Subject: [PATCH 1/2] print the modified version of pyproject.toml --- .github/workflows/testpypi-release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/testpypi-release.yaml b/.github/workflows/testpypi-release.yaml index ee2365cb88c..fbef093540b 100644 --- a/.github/workflows/testpypi-release.yaml +++ b/.github/workflows/testpypi-release.yaml @@ -30,6 +30,7 @@ jobs: run: | python .github/workflows/configure-testpypi-version.py pyproject.toml git update-index --assume-unchanged pyproject.toml + cat pyproject.toml - name: Build tarball and wheels run: | From 556e9fc7261905029aff485c8eff393a378fc947 Mon Sep 17 00:00:00 2001 From: Keewis Date: Wed, 8 Jun 2022 11:28:59 +0200 Subject: [PATCH 2/2] add --pre --- doc/getting-started-guide/installing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/getting-started-guide/installing.rst b/doc/getting-started-guide/installing.rst index 6c7c82dec72..68472476fd7 100644 --- a/doc/getting-started-guide/installing.rst +++ b/doc/getting-started-guide/installing.rst @@ -155,7 +155,7 @@ To install the most recent development version, install from github:: or from TestPyPI:: - $ python -m pip install --index-url https://test.pypi.org/simple --extra-index-url https://pypi.org/simple xarray + $ python -m pip install --index-url https://test.pypi.org/simple --extra-index-url https://pypi.org/simple --pre xarray Testing -------