changeset 7929:8e0efe7b3b10

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.
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 30 Oct 2019 12:59:39 +0100
parents ba242e3d29a6
children 5a82f854825a
files dev_requirements.txt setup.py
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/dev_requirements.txt	Tue Oct 22 21:30:49 2019 +0200
+++ b/dev_requirements.txt	Wed Oct 30 12:59:39 2019 +0100
@@ -2,7 +2,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
--- a/setup.py	Tue Oct 22 21:30:49 2019 +0200
+++ b/setup.py	Wed Oct 30 12:59:39 2019 +0100
@@ -41,7 +41,7 @@
 
 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",