try to fix for Python 3.5 on windows

This commit is contained in:
Shay Palachy
2020-01-31 19:57:34 +02:00
parent e3969167ab
commit 94778a0b66
2 changed files with 9 additions and 1 deletions
+8 -1
View File
@@ -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 <https://travis-ci.org/shaypal5/cachier>`_.
* A simple interface.
* Defining "shelf life" for cached values.
+1
View File
@@ -40,6 +40,7 @@ setup(
''',
install_requires=[
'watchdog', 'portalocker',
'pathtools', # for watchdog, who has dependency spec problem
],
extras_require={
'test': TEST_REQUIRES,