diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-29 19:44:26 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-29 19:44:26 -0700 |
commit | d3d816efba4798a9a81f5f0463fb2f70871644db (patch) | |
tree | 39f4b1805d335e430ada814bcae40047737fbeaf | |
parent | e68063498aff6691d6b379ab014fe954d821b237 (diff) |
Bump version numbers
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | tox-requirements.txt | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -36,7 +36,7 @@ Requirements - Python 2.6 or better <http://www.python.org/> - this includes Python 3.2 and higher as well. - - Cryptography 0.5.4 or better <https://cryptography.io> + - Cryptography 0.6 or better <https://cryptography.io> - ecdsa 0.9 or better <https://pypi.python.org/pypi/ecdsa> If you have setuptools, you can build and install paramiko and all its @@ -41,7 +41,7 @@ try: from setuptools import setup kw = { 'install_requires': [ - 'cryptography >= 0.5.4', + 'cryptography >= 0.6', 'ecdsa >= 0.11', 'pyasn1 >= 0.1.7', ], diff --git a/tox-requirements.txt b/tox-requirements.txt index e66a4534..0b93acf3 100644 --- a/tox-requirements.txt +++ b/tox-requirements.txt @@ -1,3 +1,3 @@ # Not sure why tox can't just read setup.py? -cryptography >= 0.5.4 +cryptography >= 0.6 pyasn1 >= 0.1.7 |