Skip to content

Commit 1737835

Browse files
committed
Merge pull request #943 from deis/python-updates
chore(controller): update celery, djangorestframework, redis
2 parents eebb278 + fca4aa7 commit 1737835

6 files changed

Lines changed: 10 additions & 84 deletions

File tree

controller/Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,19 @@ RUN wget -qO- https://raw.githubusercontent.com/pypa/pip/1.5.5/contrib/get-pip.p
1212
RUN apt-get install -yq git
1313

1414
# install requirements before ADD to cache layer and speed build
15-
RUN pip install celery==3.1.8 \
15+
RUN pip install celery==3.1.11 \
1616
Django==1.6.4 \
1717
django-allauth==0.15.0 \
1818
git+https://github.com/deis/django-fsm@add-exception-handling \
1919
django-guardian==1.1.1 \
2020
django-json-field==0.5.5 \
2121
django-yamlfield==0.5 \
22-
djangorestframework==2.3.12 \
22+
djangorestframework==2.3.13 \
2323
gunicorn==18.0 \
24-
paramiko==1.12.1 \
2524
psycopg2==2.5.2 \
26-
pycrypto==2.6.1 \
2725
python-etcd==0.3.0 \
2826
PyYAML==3.10 \
29-
redis==2.8.0 \
27+
redis==2.9.1 \
3028
static==1.0.2 \
3129
South==0.8.4
3230

controller/api/ssh.py

Lines changed: 0 additions & 61 deletions
This file was deleted.

controller/requirements.txt

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Deis controller requirements
22
#
33
# NOTE: For testing on Mac OS X Mavericks, use the following to work around a clang issue:
4-
# ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install [pycrypto]
4+
# ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install [args]
55
#
6-
celery==3.1.8
6+
celery==3.1.11
77
Django==1.6.4
88
django-allauth==0.15.0
99
# HACK: use bacongobbler's feature branch until
@@ -12,13 +12,11 @@ git+https://github.com/deis/django-fsm@add-exception-handling
1212
django-guardian==1.1.1
1313
django-json-field==0.5.5
1414
django-yamlfield==0.5
15-
djangorestframework==2.3.12
15+
djangorestframework==2.3.13
1616
gunicorn==18.0
17-
paramiko==1.12.1
1817
psycopg2==2.5.2
19-
pycrypto==2.6.1
2018
python-etcd==0.3.0
2119
PyYAML==3.10
22-
redis==2.8.0
20+
redis==2.9.1
2321
static==1.0.2
2422
South==0.8.4

docs/docs_requirements.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,18 @@
55
# requirements.txt and dev_requirements.txt files.
66
#
77
# NOTE: For testing on Mac OS X Mavericks, use the following to work around a clang issue:
8-
# ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install [pycrypto]
8+
# ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install [args]
99
#
10-
celery==3.1.8
10+
celery==3.1.11
1111
Django==1.6.4
1212
django-allauth==0.15.0
1313
# HACK: use bacongobbler's feature branch until
1414
# https://github.com/kmmbvnr/django-fsm/pull/31 is merged
1515
git+https://github.com/bacongobbler/django-fsm@add-exception-handling
1616
django-guardian==1.1.1
1717
django-json-field==0.5.5
18-
djangorestframework==2.3.12
18+
djangorestframework==2.3.13
1919
gunicorn==18.0
20-
paramiko==1.12.1
2120
psycopg2==2.5.2
2221
python-etcd==0.3.0
2322
PyYAML==3.10

docs/server/api.ssh.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/server/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Server Reference
1717
api.models
1818
api.routers
1919
api.serializers
20-
api.ssh
2120
api.tasks
2221
api.urls
2322
api.utils

0 commit comments

Comments
 (0)