diff options
| -rw-r--r-- | CHANGES.txt | 5 | ||||
| -rw-r--r-- | pyramid/compat.py | 1 | ||||
| -rw-r--r-- | setup.py | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 01e4b2f1c..482610319 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -30,6 +30,11 @@ Deprecations Backward Incompatibilities -------------------------- +- On Python 3.4+ the ``repoze.lru`` dependency is dropped. If you were using + this package directly in your apps you should make sure that you are + depending on it directly within your project. + See https://github.com/Pylons/pyramid/pull/3140 + Documentation Changes --------------------- diff --git a/pyramid/compat.py b/pyramid/compat.py index 8a1e89909..a7f9c1287 100644 --- a/pyramid/compat.py +++ b/pyramid/compat.py @@ -19,7 +19,6 @@ except ImportError: # pragma: no cover try: from functools import lru_cache - except ImportError: from repoze.lru import lru_cache @@ -11,9 +11,6 @@ # FITNESS FOR A PARTICULAR PURPOSE # ############################################################################## - -import sys - from setuptools import setup, find_packages def readfile(name): |
