1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-27 18:28:42 +00:00

allow llfuse version 0.41.x, fixes #642

This commit is contained in:
Thomas Waldmann 2016-02-07 22:54:53 +01:00
parent 6a1e7328de
commit 7204925880
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
# low-level FUSE support library for "borg mount" # low-level FUSE support library for "borg mount"
# see comments setup.py about this version requirement. # see comments setup.py about this version requirement.
llfuse<0.41 llfuse<0.42

View file

@ -24,9 +24,9 @@
extras_require = { extras_require = {
# llfuse 0.40 (tested, proven, ok), needs FUSE version >= 2.8.0 # llfuse 0.40 (tested, proven, ok), needs FUSE version >= 2.8.0
# llfuse 0.41 (unknown, maybe ok) # llfuse 0.41 (tested shortly, looks ok), needs FUSE version >= 2.8.0
# llfuse 0.42 (tested, does not work, incompatible api changes) # llfuse 0.42 (tested, does not work, incompatible api changes)
'fuse': ['llfuse<0.41', ], 'fuse': ['llfuse<0.42', ],
} }
from setuptools import setup, Extension from setuptools import setup, Extension