mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 17:57:59 +00:00
Merge pull request #5073 from ThomasWaldmann/fix-birthtime-old-llfuse-master
require recent enough llfuse for birthtime support, fixes #5064
This commit is contained in:
commit
cd1f2b11be
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