require recent enough llfuse for birthtime support, fixes #5064

also:

add llfuse < 2.0 requirement also for python>=3.7.
maybe not really required because llfuse seems rather dead anyway,
but good for consistency.
This commit is contained in:
Thomas Waldmann 2020-04-02 20:43:29 +02:00
parent bd9acb6ab3
commit d1733b6fc0
1 changed files with 2 additions and 3 deletions

View File

@ -82,10 +82,9 @@ install_requires = [
# llfuse package. "borg mount" needs llfuse to work.
# if you do not have llfuse, do not require it, most of borgbackup will work.
extras_require = {
# llfuse 1.x should work, llfuse 2.0 will break API
'fuse': [
'llfuse >=1.1, <2.0',
'llfuse >=1.3.4; python_version >="3.7"',
'llfuse >=1.3, <2.0',
'llfuse >=1.3.4, <2.0; python_version >="3.7"',
],
}