1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-23 15:58:55 +00:00

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

View file

@ -79,6 +79,9 @@
# 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'