# HG changeset patch # User Mads Kiilerich # Date 2017-02-02 03:11:29 # Node ID 5cf18f89ab3e802720ad71739a2ac5b3bc5c2d39 # Parent e81a99f9e365f90b248404930ca084d3799f6063 setup: bump whoosh and bcrypt minimum versions Some changes had sneaked in that crashed with the oldest package versions. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ requirements = [ "SQLAlchemy>=1.0,<1.1", "Mako>=0.9.0,<=1.0.0", "pygments>=1.5", - "whoosh>=2.4.0,<=2.5.7", + "whoosh>=2.5.0,<=2.5.7", "celery>=3.1,<3.2", "babel>=0.9.6,<2.4", "python-dateutil>=1.5.0,<2.0.0", @@ -63,7 +63,7 @@ if sys.version_info < (2, 7): requirements.append("argparse") if not is_windows: - requirements.append("bcrypt>=2.0.0") + requirements.append("bcrypt>=3.1.0") dependency_links = [ ]