Explorar el Código

Merge pull request #3837 from ThomasWaldmann/py37_llfuse-1.1

Add a version hint for llfuse for python3.7 (1.1 backport)
TW hace 7 años
padre
commit
1ac2bbb434
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      setup.py

+ 3 - 0
setup.py

@@ -69,6 +69,9 @@ if sys.platform.startswith('freebsd'):
     # llfuse 0.41.1, 1.1 are ok
     extras_require['fuse'] = ['llfuse <2.0, !=0.42.*, !=0.43, !=1.0', ]
 
+if my_python >= (3, 7):
+    extras_require['fuse'][0] += ', >=1.3.4'
+
 from setuptools import setup, find_packages, Extension
 from setuptools.command.sdist import sdist
 from distutils.command.clean import clean