Python2.7 functools_lru_cache above 1.3 not working #526
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #495
When using Python 2.7 a not working
backports.functools-lru-cache
is getting installed.backports.functools-lru-cache
above 1.3 gives an import error. This PR pins the required version between 1.2.1 and <1.4 and gets it working for now.This issue wasn't failing tests because the in the
requirements.txt
the version is pinned to 1.2.1 but that wasn't the case insetup.py
.Corrected this with the second commit.
This issue seems to have something to do with this issue over at
jaraco/backports.functools-lru-cache
.Reopened the issue and waiting for a response but this hotfixes the issue for now 👍