1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-12 07:08:47 +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 5ffb0fd7cd
commit 08fe16c176
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

@ -23,9 +23,9 @@ install_requires = ['msgpack-python>=0.4.6', ]
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