Skip to content

Commit 2c39f67

Browse files
committed
docs/make_a_release: Ensure uploaded distributions are signed
1 parent e003adc commit 2c39f67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/make_a_release.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ How to Make a Release
55
A core developer should use the following steps to create a release of
66
**cmake-python-distributions**.
77

8-
0. Configure `~/.pypirc` as described `here <http://peterdowns.com/posts/first-time-with-pypi.html>`_.
8+
0. Configure `~/.pypirc` as described `here <https://packaging.python.org/distributing/#uploading-your-project-to-pypi>`_.
99

1010
1. Make sure that all CI tests are passing: `AppVeyor <https://ci.appveyor.com/project/scikit-build/cmake-python-distributions-f3rbb>`_,
1111
`CircleCI <https://circleci.com/gh/scikit-build/cmake-python-distributions>`_
@@ -37,13 +37,13 @@ A core developer should use the following steps to create a release of
3737

3838
4. Upload the packages to the testing PyPI instance::
3939

40-
twine upload -r pypitest dist/*
40+
twine upload --sign -r pypitest dist/*
4141

4242
5. Check the `PyPI testing package page <https://testpypi.python.org/pypi/cmake/>`_.
4343

4444
6. Upload the packages to the PyPI instance::
4545

46-
twine upload dist/*
46+
twine upload --sign dist/*
4747

4848
7. Check the `PyPI package page <https://pypi.python.org/pypi/cmake/>`_.
4949

0 commit comments

Comments
 (0)