# HG changeset patch # User Mads Kiilerich # Date 2019-10-30 12:59:39 # Node ID 8e0efe7b3b10ae2bf9340300b9ab55480980174b # Parent ba242e3d29a6b93919613bf879fa2bca826bcbe2 setup: set explicit minimum version for all dependencies Kind of arbitrarily chosen, but it seems like reasonable not-too-recent versions that still provide a consistent baseline. diff --git a/dev_requirements.txt b/dev_requirements.txt --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -2,7 +2,7 @@ pytest >= 4.6.6, < 4.7 pytest-sugar >= 0.9.2, < 0.10 pytest-benchmark >= 3.2.2, < 3.3 pytest-localserver >= 0.5.0, < 0.6 -mock < 3.1 -Sphinx < 1.9 -WebTest < 2.1 +mock >= 3.0.0, < 3.1 +Sphinx >= 1.8.0, < 1.9 +WebTest >= 2.0.3, < 2.1 isort == 4.3.21 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ is_windows = __platform__ in ['Windows'] requirements = [ "alembic >= 0.8.0, < 1.1", - "gearbox < 1", + "gearbox >= 0.1.0, < 1", "waitress >= 0.8.8, < 1.4", "WebOb >= 1.7, < 1.9", "backlash >= 0.1.2, < 1",