mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-27 02:08:54 +00:00
allow llfuse version 0.41.x, fixes #642
This commit is contained in:
parent
6a1e7328de
commit
7204925880
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
# low-level FUSE support library for "borg mount"
|
||||
# see comments setup.py about this version requirement.
|
||||
llfuse<0.41
|
||||
llfuse<0.42
|
||||
|
||||
|
|
4
setup.py
4
setup.py
|
@ -24,9 +24,9 @@
|
|||
|
||||
extras_require = {
|
||||
# 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)
|
||||
'fuse': ['llfuse<0.41', ],
|
||||
'fuse': ['llfuse<0.42', ],
|
||||
}
|
||||
|
||||
from setuptools import setup, Extension
|
||||
|
|
Loading…
Reference in a new issue