1
0
Fork 0
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:
Rémi Oudin 2018-05-14 20:19:05 +02:00 committed by Thomas Waldmann
parent 7912fbc610
commit af6d40560f

View file

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