Merge pull request #3817 from Gu1nness/py37_llfuse

Add a version hint for llfuse for python3.7
This commit is contained in:
TW 2018-05-15 23:11:45 +02:00 committed by GitHub
commit eea76ca8ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -79,6 +79,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'
compress_source = 'src/borg/compress.pyx'
crypto_ll_source = 'src/borg/crypto/low_level.pyx'
crypto_helpers = 'src/borg/crypto/_crypto_helpers.c'