mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 01:37:20 +00:00
Add a version hint for llfuse for python3.7 (1.1 backport)
Python 3.7 requires llfuse >= 1.3.4. Fixes #3804
This commit is contained in:
parent
7912fbc610
commit
af6d40560f
1 changed files with 3 additions and 0 deletions
3
setup.py
3
setup.py
|
@ -69,6 +69,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'
|
||||
|
||||
from setuptools import setup, find_packages, Extension
|
||||
from setuptools.command.sdist import sdist
|
||||
from distutils.command.clean import clean
|
||||
|
|
Loading…
Reference in a new issue