浏览代码

all FUSE related version requirements in 1 place

Thomas Waldmann 9 年之前
父节点
当前提交
6a1e7328de
共有 2 个文件被更改,包括 2 次插入4 次删除
  1. 1 3
      docs/installation.rst
  2. 1 1
      setup.py

+ 1 - 3
docs/installation.rst

@@ -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

+ 1 - 1
setup.py

@@ -23,7 +23,7 @@ on_rtd = os.environ.get('READTHEDOCS')
 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', ],