Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pyca/cryptography
=================

.. image:: https://img.shields.io/pypi/v/cryptography.svg
:target: https://pypi.python.org/pypi/cryptography/
:target: https://pypi.org/project/cryptography/
:alt: Latest Version

.. image:: https://readthedocs.org/projects/cryptography/badge/?version=latest
Expand Down
2 changes: 1 addition & 1 deletion docs/development/custom-vectors/secp256k1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ the following python script was run to generate the vector files.
Download link: :download:`verify_secp256k1.py
</development/custom-vectors/secp256k1/verify_secp256k1.py>`

.. _`pure Python ecdsa`: https://pypi.python.org/pypi/ecdsa
.. _`pure Python ecdsa`: https://pypi.org/project/ecdsa/
10 changes: 5 additions & 5 deletions docs/development/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ The HTML documentation index can now be found at
.. _`Homebrew`: https://brew.sh
.. _`MacPorts`: https://www.macports.org
.. _`OpenSSL`: https://www.openssl.org
.. _`pytest`: https://pypi.python.org/pypi/pytest
.. _`tox`: https://pypi.python.org/pypi/tox
.. _`virtualenv`: https://pypi.python.org/pypi/virtualenv
.. _`pip`: https://pypi.python.org/pypi/pip
.. _`sphinx`: https://pypi.python.org/pypi/Sphinx
.. _`pytest`: https://pypi.org/project/pytest/
.. _`tox`: https://pypi.org/project/tox/
.. _`virtualenv`: https://pypi.org/project/virtualenv/
.. _`pip`: https://pypi.org/project/pip/
.. _`sphinx`: https://pypi.org/project/Sphinx/
.. _`reStructured Text`: http://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html
.. _`this Github issue`: https://github.com/rfk/pyenchant/issues/42
4 changes: 4 additions & 0 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ def release(version):
"PURGE", "https://pypi.python.org/simple/cryptography/"
)
response.raise_for_status()
response = session.request(
"PURGE", "https://pypi.org/simple/cryptography/"
)
response.raise_for_status()

token = getpass.getpass("Input the Jenkins token: ")
response = session.get(
Expand Down