From 0e9d7475fa74600aebeb94ea5f7a25c8a9fc1aa9 Mon Sep 17 00:00:00 2001 From: Jeremiah Cooper Date: Fri, 17 Mar 2017 17:19:33 -0400 Subject: [PATCH] Updates all of our requirements to use a specific version, confirmed as working and passing all tests. This should stop any future breaking changes from upstream dependencies. --- requirements.dev.txt | 16 ++++++++-------- requirements.txt | 25 +++++++++++++------------ 2 files changed, 21 insertions(+), 20 deletions(-) diff --git a/requirements.dev.txt b/requirements.dev.txt index 2e0af05ec4f..1ae47cec730 100644 --- a/requirements.dev.txt +++ b/requirements.dev.txt @@ -1,14 +1,14 @@ Django==1.8.15 -psycopg2 +psycopg2==2.7.1 -# Install GeoNode latest master --e git+https://github.com/GeoNode/geonode.git#egg=GeoNode +# Install GeoNode tagged at version 2.5.15 +-e git+https://github.com/GeoNode/geonode.git@2.5.15#egg=GeoNode -awscli -numpy -python-dateutil -flake8 -coverage +awscli==1.11.63 +numpy==1.8.2 +python-dateutil==1.5 +flake8==3.3.0 +coverage==4.3.4 # This mapproxy commit includes support for dashes in geopackage table names. git+https://github.com/mapproxy/mapproxy.git@07552da8 diff --git a/requirements.txt b/requirements.txt index a3b5b5597b6..9bc8bd4c0f1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,24 +1,25 @@ # gdal/ogr python bindings -python-dateutil -psycopg2 -numpy +python-dateutil==1.5 +psycopg2==2.7.1 +numpy==1.8.2 # Needed for testing. -mock +mock==2.0.0 # Just for documentation generation -sphinx -sphinx-autobuild +sphinx==1.5.3 +sphinx-autobuild==0.6.0 Django==1.8.15 -# Install GeoNode latest master --e git+https://github.com/GeoNode/geonode.git#egg=GeoNode +# Install GeoNode tagged at version 2.5.15 +-e git+https://github.com/GeoNode/geonode.git@2.5.15#egg=GeoNode -awscli -flake8 -coverage +awscli==1.11.63 +flake8==3.3.0 +coverage==4.3.4 -git+https://github.com/mapproxy/mapproxy.git@eeb162ee0604#egg=MapProxy==1.10.0a +# This mapproxy commit includes support for dashes in geopackage table names. +git+https://github.com/mapproxy/mapproxy.git@07552da8 # You will also need gdal/ogr. See Developer Notes section of docs.