Skip to content

Commit 2731b3a

Browse files
committed
chore(controller): remove provider libraries from requirements.txt
After merging #530, Deis no longer uses boto, dop, or pyrax. This removes them from our pip requirements files and the docs.
1 parent 7c03ef6 commit 2731b3a

4 files changed

Lines changed: 3 additions & 12 deletions

File tree

controller/Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,20 @@ RUN wget -qO- https://raw.github.com/pypa/pip/1.5.4/contrib/get-pip.py | python
1212
RUN apt-get install -yq git
1313

1414
# install requirements before ADD to cache layer and speed build
15-
RUN pip install boto==2.23.0 \
16-
celery==3.1.8 \
15+
RUN pip install celery==3.1.8 \
1716
Django==1.6.2 \
1817
django-allauth==0.15.0 \
1918
git+https://github.com/deis/django-fsm@add-exception-handling \
2019
django-guardian==1.1.1 \
2120
django-json-field==0.5.5 \
2221
django-yamlfield==0.5 \
2322
djangorestframework==2.3.12 \
24-
dop==0.1.6 \
2523
gevent==1.0 \
2624
gunicorn==18.0 \
2725
paramiko==1.12.1 \
2826
psycopg2==2.5.2 \
2927
pycrypto==2.6.1 \
3028
python-etcd==0.3.0 \
31-
pyrax==1.6.2 \
3229
PyYAML==3.10 \
3330
redis==2.8.0 \
3431
static==1.0.2 \

controller/requirements.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# NOTE: For testing on Mac OS X Mavericks, use the following to work around a clang issue:
44
# ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install [pycrypto]
55
#
6-
boto==2.23.0
76
celery==3.1.8
87
Django==1.6.2
98
django-allauth==0.15.0
@@ -14,14 +13,12 @@ django-guardian==1.1.1
1413
django-json-field==0.5.5
1514
django-yamlfield==0.5
1615
djangorestframework==2.3.12
17-
dop==0.1.6
1816
gevent==1.0
1917
gunicorn==18.0
2018
paramiko==1.12.1
2119
psycopg2==2.5.2
2220
pycrypto==2.6.1
2321
python-etcd==0.3.0
24-
pyrax==1.6.2
2522
PyYAML==3.10
2623
redis==2.8.0
2724
static==1.0.2

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Please add any issues you find with this documentation to the
1616
```console
1717
$ virtualenv venv -q --prompt='(docs)' && . venv/bin/activate
1818
(docs)$ pip install -r docs_requirements.txt
19-
Downloading/unpacking boto==2.23.0
19+
Downloading/unpacking celery==3.1.8
2020
...
21-
Successfully installed psycopg2 pyrax python-etcd PyYAML ...
21+
Successfully installed psycopg2 python-etcd PyYAML ...
2222
Cleaning up...
2323
(docs)$
2424
```

docs/docs_requirements.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
# NOTE: For testing on Mac OS X Mavericks, use the following to work around a clang issue:
88
# ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future pip install [pycrypto]
99
#
10-
boto==2.23.0
1110
celery==3.1.8
1211
Django==1.6.2
1312
django-allauth==0.15.0
@@ -17,11 +16,9 @@ git+https://github.com/bacongobbler/django-fsm@add-exception-handling
1716
django-guardian==1.1.1
1817
django-json-field==0.5.5
1918
djangorestframework==2.3.12
20-
dop==0.1.6
2119
gunicorn==18.0
2220
paramiko==1.12.1
2321
psycopg2==2.5.2
24-
pyrax==1.6.2
2522
python-etcd==0.3.0
2623
PyYAML==3.10
2724
South==0.8.4

0 commit comments

Comments
 (0)