Merge pull request #3837 from ThomasWaldmann/py37_llfuse-1.1

Add a version hint for llfuse for python3.7 (1.1 backport)
This commit is contained in:
TW 2018-05-18 18:01:36 +02:00 committed by GitHub
commit 1ac2bbb434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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