1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-23 06:31:58 +00:00

Add a version hint for llfuse for python3.7

Python 3.7 requires llfuse >= 1.3.4.
Fixes https://github.com/borgbackup/borg/issues/3804
This commit is contained in:
Rémi Oudin 2018-05-14 20:19:05 +02:00
parent 83c8734d70
commit 318fa2e473

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'