diff --git a/README.rst b/README.rst index 41bf6c8..1a15e84 100644 --- a/README.rst +++ b/README.rst @@ -34,11 +34,18 @@ Install ``cachier`` with: pip install cachier +For the latest version supporting Python 2.7 please use: + +.. code-block:: python + + pip install 'cachier==1.2.8' + + Features ======== * Pure Python. -* Compatible with Python 2.7+ and Python 3.5+. +* Compatible with Python 3.5+ (and Python 2.7 up until version 1.2.8). * Supported and `tested on Linux, OS X and Windows `_. * A simple interface. * Defining "shelf life" for cached values. diff --git a/setup.py b/setup.py index d111074..c438286 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,7 @@ setup( ''', install_requires=[ 'watchdog', 'portalocker', + 'pathtools', # for watchdog, who has dependency spec problem ], extras_require={ 'test': TEST_REQUIRES,