File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -35,3 +35,4 @@ Housekeeping
3535 `#135 <https://github.com/mpdavis/python-jose/pull/135 >`_
3636* Add flake8 checks in CI.
3737* Add CPython 3.7 and PyPy 3.5 testing in CI.
38+ * Remove package future as a dependency, not needed anymore.
Original file line number Diff line number Diff line change 11pycryptodome
22six
3- future
43rsa
54ecdsa
65pyasn1
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def _cryptography_version():
3939 'pycryptodome' : ['pycryptodome >=3.3.1, <4.0.0' ] + pyasn1 ,
4040}
4141legacy_backend_requires = ['ecdsa <1.0' , 'rsa' ] + pyasn1
42- install_requires = ['six <2.0' , 'future <1.0' ]
42+ install_requires = ['six <2.0' ]
4343
4444# TODO: work this into the extras selection instead.
4545install_requires += legacy_backend_requires
@@ -75,7 +75,6 @@ def _cryptography_version():
7575 setup_requires = ['pytest-runner' ],
7676 tests_require = [
7777 'six' ,
78- 'future' ,
7978 'ecdsa' ,
8079 'pytest' ,
8180 'pytest-cov' ,
You can’t perform that action at this time.
0 commit comments