Skip to content

Commit

Permalink
require recent enough llfuse for birthtime support, fixes #5064
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ThomasWaldmann committed Apr 2, 2020
1 parent bd9acb6 commit d1733b6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"',
],
}

Expand Down

0 comments on commit d1733b6

Please sign in to comment.