From e7bf801b459a1fe4f4c287fc55c43a45a95bb311 Mon Sep 17 00:00:00 2001 From: Kira Evans Date: Wed, 11 Sep 2019 12:13:50 -0700 Subject: [PATCH] fix typos in release guidelines (#522) --- RELEASE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 621ada6ba79..98a71c0ae8a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -50,12 +50,12 @@ $ pip install twine To make sure that everything is working properly, first upload to `test.pypi.org`, entering your credentials when prompted: ```bash -$ python -m twine upload --repository-url=test.pypi.org/legacy/ dist/* +$ python -m twine upload --repository-url=https://test.pypi.org/legacy/ dist/* ``` Then create a new environment and download the release from the test servers: ```bash -$ python -m pip install --extra-index-url test.pypi.org/simple/ napari=X.Y.Z +$ python -m pip install --extra-index-url https://test.pypi.org/simple/ napari==X.Y.Z ``` Try running some examples and tests to verify that everything is working properly.