From 7355bda44fd1e039a40f0d622ae36880fb757537 Mon Sep 17 00:00:00 2001 From: Nuno Santos Date: Wed, 14 Sep 2016 16:34:52 +0200 Subject: [PATCH] Change requirements from git repositories to proper releases. Using Werkzeug 0.11 and Flask 0.10 as minimum versions. --- .travis.yml | 10 +++++----- requirements.txt | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 65ab4ef..4ce41b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,11 +3,11 @@ python: - "2.7" - "3.3" install: - - pip install . --use-mirrors - - pip install coverage --use-mirrors - - pip install redis --use-mirrors - - "if [[ $TRAVIS_PYTHON_VERSION == 2.7* ]]; then pip install pylibmc --use-mirrors; fi" - - "if [[ $TRAVIS_PYTHON_VERSION == 3.3* ]]; then pip install python3-memcached --use-mirrors; fi" + - pip install . + - pip install coverage + - pip install redis + - "if [[ $TRAVIS_PYTHON_VERSION == 2.7* ]]; then pip install pylibmc; fi" + - "if [[ $TRAVIS_PYTHON_VERSION == 3.3* ]]; then pip install python3-memcached; fi" script: nosetests --with-coverage --cover-package=flask_cache services: - memcached diff --git a/requirements.txt b/requirements.txt index 1cbf3c0..69ab8aa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -git+git://github.com/mitsuhiko/werkzeug.git#egg=werkzeug -git+git://github.com/mitsuhiko/flask.git#egg=flask +Werkzeug>=0.11 +Flask>=0.10 \ No newline at end of file