How to verify that your released correctly

This commit is contained in:
Alex Gaynor 2014-01-07 11:19:08 -08:00
parent 4345c0d3e6
commit 41c14d55ea

View file

@ -25,4 +25,12 @@ key in order to do a release. Once this has happened:
The release should now be available on PyPI and a tag should be available in
the repository. You should verify that ``pip install cryptography`` works
correctly.
correctly:
.. code-block:: pycon
>>> import cryptography
>>> cryptography.__version__
'...'
Verify that this is the version you just released.