From 8e7ed8ebea357ce6e4dd0a6d64d872bec53c2156 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 4 Jun 2016 15:53:30 +0200 Subject: [PATCH] llfuse: update version requirement for freebsd as the requirement string is a AND operation, I used the rough "<2.0" requirement and then excluded the non-working versions. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 94331086e1..6312aee09f 100644 --- a/setup.py +++ b/setup.py @@ -32,9 +32,9 @@ } if sys.platform.startswith('freebsd'): - # while llfuse 1.0 is the latest llfuse release right now, - # llfuse 0.41.1 is the latest release that actually builds on freebsd: - extras_require['fuse'] = ['llfuse==0.41.1', ] + # llfuse was frequently broken / did not build on freebsd + # llfuse 0.41.1, 1.1 are ok + extras_require['fuse'] = ['llfuse <2.0, !=0.42.*, !=0.43, !=1.0', ] from setuptools import setup, Extension from setuptools.command.sdist import sdist