Skip to content

Commit

Permalink
Upgrading to Cliquet 2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Sep 9, 2015
1 parent 054dfea commit 699ee15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 + [
Expand Down

0 comments on commit 699ee15

Please sign in to comment.