From 699ee159c0a152c1581eb045ad5be5727f8e9e2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20HUBSCHER?= Date: Wed, 9 Sep 2015 16:16:20 +0200 Subject: [PATCH] Upgrading to Cliquet 2.6.2 --- Makefile | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 248c8a4b2..96eb0abd3 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,7 @@ OBJECTS = .venv .coverage all: install install: $(INSTALL_STAMP) $(INSTALL_STAMP): $(PYTHON) setup.py + $(VENV)/bin/pip install -U pip $(VENV)/bin/pip install -Ue . touch $(INSTALL_STAMP) @@ -30,7 +31,6 @@ $(DEV_STAMP): $(PYTHON) dev-requirements.txt virtualenv: $(PYTHON) $(PYTHON): virtualenv $(VENV) - $(VENV)/bin/pip install -U pip serve: install-dev migrate $(VENV)/bin/pserve $(SERVER_CONFIG) --reload diff --git a/setup.py b/setup.py index 9f57f4621..1fd4d7be3 100644 --- a/setup.py +++ b/setup.py @@ -17,16 +17,16 @@ def read_file(filename): REQUIREMENTS = [ 'waitress==0.8.10', - 'cliquet>=2.6.1,<=2.7', + 'cliquet>=2.6.2,<=2.7', 'jsonschema==2.5.1', ] POSTGRESQL_REQUIREMENTS = REQUIREMENTS + [ - 'cliquet[postgresql]>=2.6.1,<=2.7' + 'cliquet[postgresql]>=2.6.2,<=2.7' ] MONITORING_REQUIREMENTS = REQUIREMENTS + [ - 'cliquet[monitoring]>=2.6.1,<=2.7' + 'cliquet[monitoring]>=2.6.2,<=2.7' ] FXA_REQUIREMENTS = REQUIREMENTS + [