mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 16:55:36 +00:00
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:
parent
bd9acb6ab3
commit
d1733b6fc0
1 changed files with 2 additions and 3 deletions
5
setup.py
5
setup.py
|
@ -82,10 +82,9 @@
|
|||
# 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"',
|
||||
],
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue