Skip to content

Commit 1c3c1a6

Browse files
authored
Merge pull request #134 from zejn/clean-dependencies
Future isn't used anymore and can be removed as a dependency.
2 parents 8b863e8 + 4a3c304 commit 1c3c1a6

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
pycryptodome
22
six
3-
future
43
rsa
54
ecdsa
65
pyasn1

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _cryptography_version():
3939
'pycryptodome': ['pycryptodome >=3.3.1, <4.0.0'] + pyasn1,
4040
}
4141
legacy_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.
4545
install_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',

0 commit comments

Comments
 (0)