# HG changeset patch # User Mads Kiilerich # Date 1486001489 -3600 # 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 -r e81a99f9e365 -r 5cf18f89ab3e setup.py --- a/setup.py Thu Feb 02 03:10:39 2017 +0100 +++ b/setup.py Thu Feb 02 03:11:29 2017 +0100 @@ -46,7 +46,7 @@ "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 @@ requirements.append("argparse") if not is_windows: - requirements.append("bcrypt>=2.0.0") + requirements.append("bcrypt>=3.1.0") dependency_links = [ ]