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

all FUSE related version requirements in 1 place

This commit is contained in:
Thomas Waldmann 2016-02-07 19:08:03 +01:00
parent b7b18b66be
commit 6a1e7328de
2 changed files with 2 additions and 4 deletions

View file

@ -105,9 +105,7 @@ following dependencies first:
* liblz4_
* some Python dependencies, pip will automatically install them for you
* optionally, the llfuse_ Python package is required if you wish to mount an
archive as a FUSE filesystem. llfuse has been tested in version 0.40.x,
0.41.x might also work, >= 0.42.x does not work (due to API changes in
llfuse). FUSE >= 2.8.0 is required for llfuse 0.40.
archive as a FUSE filesystem. See setup.py about the version requirements.
In the following, the steps needed to install the dependencies are listed for a
selection of platforms. If your distribution is not covered by these

View file

@ -23,7 +23,7 @@
install_requires=['msgpack-python==0.4.6', ]
extras_require = {
# llfuse 0.40 (tested, proven, ok)
# llfuse 0.40 (tested, proven, ok), needs FUSE version >= 2.8.0
# llfuse 0.41 (unknown, maybe ok)
# llfuse 0.42 (tested, does not work, incompatible api changes)
'fuse': ['llfuse<0.41', ],