From 7576f17967c8372ea373519f44808724b867f025 Mon Sep 17 00:00:00 2001 From: Andrew Ekstedt Date: Thu, 21 May 2015 00:07:13 -0700 Subject: [PATCH] Require Whoosh <2.7 Because they can't seem to make a minor release without breaking backwards compatibility: Whoosh 2.7 removed the spelling argument from schema.ID. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 146b0ed..896a9f1 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( }, install_requires=[ 'SQLAlchemy>=0.9.7', - 'whoosh>=2.5', + 'whoosh>=2.5,<2.7', 'markdown', 'construct', ],