at 18.03-beta 1.2 kB view raw
1diff -ru python-jose-1.3.2/requirements.txt python-jose-1.3.2.new/requirements.txt 2--- python-jose-1.3.2/requirements.txt 2016-09-05 15:13:49.000000000 +0200 3+++ python-jose-1.3.2.new/requirements.txt 2017-03-15 11:35:47.118001810 +0100 4@@ -1,3 +1,3 @@ 5-pycrypto 6+pycryptodome 7 six 8 future 9diff -ru python-jose-1.3.2/setup.py python-jose-1.3.2.new/setup.py 10--- python-jose-1.3.2/setup.py 2016-09-05 15:13:49.000000000 +0200 11+++ python-jose-1.3.2.new/setup.py 2017-03-15 11:37:15.725077184 +0100 12@@ -25,12 +25,8 @@ 13 14 15 def get_install_requires(): 16- if platform.python_implementation() == 'PyPy': 17- crypto_lib = 'pycryptodome >=3.3.1, <3.4.0' 18- else: 19- crypto_lib = 'pycrypto >=2.6.0, <2.7.0' 20 return [ 21- crypto_lib, 22+ 'pycryptodome >=3.3.1, <3.5.0', 23 'six <2.0', 24 'ecdsa <1.0', 25 'future <1.0', 26diff -ru python-jose-1.3.2/tox.ini python-jose-1.3.2.new/tox.ini 27--- python-jose-1.3.2/tox.ini 2016-09-05 15:13:49.000000000 +0200 28+++ python-jose-1.3.2.new/tox.ini 2017-03-15 11:36:50.423055657 +0100 29@@ -6,7 +6,7 @@ 30 py.test --cov-report term-missing --cov jose 31 deps = 32 future 33- pycrypto 34+ pycryptodome 35 ecdsa 36 pytest 37 pytest-cov