1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
Description: Don't require exact versions.
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: not-needed
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -1,12 +1,12 @@
-r requirements.txt
-r requirements-standalone.txt
-apipkg==1.4
-mock==2.0.0
-Paver==1.2.4
-pytest==3.0.3
-pytest-cov==2.4.0
-pytest-flake8==0.8.1
-pytest-timeout==1.2.0
+apipkg>=1.4
+mock>=2.0.0
+Paver>=1.2.4
+pytest>=3.0.3
+pytest-cov>=2.4.0
+pytest-flake8>=0.8.1
+pytest-timeout>=1.2.0
sphinx
twine
--- a/requirements-standalone.txt
+++ b/requirements-standalone.txt
@@ -1 +1 @@
-SQLAlchemy<2.0.0
+SQLAlchemy
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,6 +1,6 @@
geolinks
lxml
-OWSLib<0.29
+OWSLib
pyproj
Shapely
xmltodict
|