Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python2.7 functools_lru_cache above 1.3 not working #526

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -4,4 +4,4 @@ nose-cov==1.6
chai==1.1.1
sphinx==1.3.5
simplejson==3.6.5
backports.functools_lru_cache==1.2.1
backports.functools_lru_cache>=1.2.1,<1.4
2 changes: 1 addition & 1 deletion setup.py
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