Skip to content

Commit

Permalink
Python2.7 functools_lru_cache above 1.3 not working
Browse files Browse the repository at this point in the history
When using Python 2.7 backports.functools-lru-cache is not working from version 1.4 and up
  • Loading branch information
wilmardo committed Mar 28, 2018
1 parent 2c0f644 commit c1f3971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def grep(attrname):
'python-dateutil',
],
extras_require={
":python_version=='2.7'": ['backports.functools_lru_cache>=1.2.1'],
":python_version=='2.7'": ['backports.functools_lru_cache>=1.2.1,<1.4'],
},
test_suite="tests",
classifiers=[
Expand Down

0 comments on commit c1f3971

Please sign in to comment.