Skip to content

Commit

Permalink
Merge pull request #134 from zejn/clean-dependencies
Browse files Browse the repository at this point in the history
Future isn't used anymore and can be removed as a dependency.
  • Loading branch information
zejn authored Apr 10, 2019
2 parents 8b863e8 + 4a3c304 commit 1c3c1a6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ Housekeeping
`#135 <https://github.com/mpdavis/python-jose/pull/135>`_
* Add flake8 checks in CI.
* Add CPython 3.7 and PyPy 3.5 testing in CI.
* Remove package future as a dependency, not needed anymore.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
pycryptodome
six
future
rsa
ecdsa
pyasn1
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _cryptography_version():
'pycryptodome': ['pycryptodome >=3.3.1, <4.0.0'] + pyasn1,
}
legacy_backend_requires = ['ecdsa <1.0', 'rsa'] + pyasn1
install_requires = ['six <2.0', 'future <1.0']
install_requires = ['six <2.0']

# TODO: work this into the extras selection instead.
install_requires += legacy_backend_requires
Expand Down Expand Up @@ -75,7 +75,6 @@ def _cryptography_version():
setup_requires=['pytest-runner'],
tests_require=[
'six',
'future',
'ecdsa',
'pytest',
'pytest-cov',
Expand Down

0 comments on commit 1c3c1a6

Please sign in to comment.