diff options
| author | Ran Benita <ran234@gmail.com> | 2016-12-17 14:08:47 +0200 |
|---|---|---|
| committer | Ran Benita <ran234@gmail.com> | 2016-12-17 14:08:47 +0200 |
| commit | aaf2ac3e0cb6f9180f1357526e37e94d22ce0dec (patch) | |
| tree | ba35d1417d2f27c526118eda0f63390a7cb49c92 /setup.py | |
| parent | 7dd3d4a16ca270d6de8db077b7c61abc0f4d2f0d (diff) | |
| download | pyjwt-aaf2ac3e0cb6f9180f1357526e37e94d22ce0dec.tar.gz | |
Require cryptography >= 1.0, replace deprecated function
The functions `decode_rfc6979_signature` and `encode_rfc6979_signature`
were deprecated in cryptography 1.0:
https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst#10---2015-08-12
and raise a DeprecationWarning now. The replacements are exactly the same.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,7 +69,7 @@ setup( tests_require=tests_require, extras_require=dict( test=tests_require, - crypto=['cryptography'], + crypto=['cryptography >= 1.0'], flake8=[ 'flake8', 'flake8-import-order', |
