2
0
Эх сурвалжийг харах

require recent enough llfuse for birthtime support, fixes #5064

also:

add llfuse < 2.0 requirement also for python>=3.7.
maybe not really required because llfuse seems rather dead anyway,
but good for consistency.
Thomas Waldmann 5 жил өмнө
parent
commit
d1733b6fc0
1 өөрчлөгдсөн 2 нэмэгдсэн , 3 устгасан
  1. 2 3
      setup.py

+ 2 - 3
setup.py

@@ -82,10 +82,9 @@ install_requires = [
 # llfuse package. "borg mount" needs llfuse to work.
 # if you do not have llfuse, do not require it, most of borgbackup will work.
 extras_require = {
-    # llfuse 1.x should work, llfuse 2.0 will break API
     'fuse': [
-        'llfuse >=1.1, <2.0',
-        'llfuse >=1.3.4; python_version >="3.7"',
+        'llfuse >=1.3, <2.0',
+        'llfuse >=1.3.4, <2.0; python_version >="3.7"',
     ],
 }