From 128420679c541222d6808d14abf37bb231b06fcc Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Mon, 16 Jul 2018 18:43:06 -0400 Subject: [PATCH] DOC: Update release process docs. --- docs/source/release-process.rst | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/source/release-process.rst b/docs/source/release-process.rst index 02e9f41993..8ac638b8d5 100644 --- a/docs/source/release-process.rst +++ b/docs/source/release-process.rst @@ -126,23 +126,20 @@ Edit your ``~/.pypirc`` file to look like: [distutils] index-servers = pypi - pypitest [pypi] username: password: - [pypitest] - repository: https://testpypi.python.org/pypi - username: - password: - after that, run: .. code-block:: bash - $ python setup.py sdist upload -r pypitest + $ pip install twine + $ twine upload --repository-url https://test.pypi.org/legacy/ dist/zipline-.tar.gz +Twine will prompt you for a username and password, which you should have access +to if you're authorized to push Zipline releases. .. note::