Skip to content

Commit dab7a94

Browse files
committed
chore(client): update requests to 2.4.3
1 parent 99d31a8 commit dab7a94

7 files changed

Lines changed: 9 additions & 8 deletions

File tree

client/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
build: setup-venv
3-
venv/bin/pip install docopt==0.6.2 python-dateutil==2.2 requests==2.3.0 pyinstaller==2.1 termcolor==1.1.0
3+
venv/bin/pip install docopt==0.6.2 python-dateutil==2.2 requests==2.4.3 pyinstaller==2.1 termcolor==1.1.0
44
venv/bin/pyinstaller deis.spec
55
chmod +x dist/deis
66

client/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ you used to provision the server. You can make a symlink or shell alias for
7575

7676
.. code-block:: console
7777
78-
$ pip install docopt==0.6.2 python-dateutil==2.2 requests==2.3.0 termcolor==1.1.0
78+
$ pip install docopt==0.6.2 python-dateutil==2.2 requests==2.4.3 termcolor==1.1.0
7979
$ sudo ln -fs $(pwd)/client/deis.py /usr/local/bin/deis
8080
$ deis
8181
Usage: deis <command> [<args>...]

client/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
],
5858
long_description=LONG_DESCRIPTION,
5959
install_requires=[
60-
'docopt==0.6.2', 'python-dateutil==2.2', 'requests==2.3.0', 'termcolor==1.1.0'
60+
'docopt==0.6.2', 'python-dateutil==2.2', 'requests==2.4.3', 'termcolor==1.1.0'
6161
],
6262
zip_safe=True,
6363
**KWARGS)

controller/dev_requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Deis client requirements
22
docopt==0.6.2
33
python-dateutil==2.2
4-
requests==2.3.0
4+
requests==2.4.3
5+
termcolor==1.1.0
56

67
# PyInstaller builds client binaries
78
PyInstaller==2.1
89

910
# Deis documentation requirements
10-
Sphinx>=1.2.2
11+
Sphinx>=1.2.3
1112
smartypants>=1.8.6
1213
sphinxcontrib-httpdomain>=1.3.0
1314

docs/docs_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ South==1.0
2424
# Deis client requirements
2525
docopt==0.6.2
2626
python-dateutil==2.2
27-
requests==2.3.0
27+
requests==2.4.3
2828
termcolor==1.1.0
2929

3030
# Deis documentation requirements

docs/using_deis/install-client.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ you used to provision the server. You can make a symlink or shell alias for
1717

1818
.. code-block:: console
1919
20-
$ pip install docopt==0.6.2 python-dateutil==2.2 requests==2.3.0 termcolor==1.1.0
20+
$ pip install docopt==0.6.2 python-dateutil==2.2 requests==2.4.3 termcolor==1.1.0
2121
$ sudo ln -fs $(pwd)/client/deis.py /usr/local/bin/deis
2222
$ deis
2323
Usage: deis <command> [<args>...]

tests/bin/build-deis-cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
virtualenv --system-site-packages venv
66
. venv/bin/activate
7-
pip install docopt==0.6.2 python-dateutil==2.2 requests==2.3.0 pyinstaller==2.1 termcolor==1.1.0
7+
pip install docopt==0.6.2 python-dateutil==2.2 requests==2.4.3 pyinstaller==2.1 termcolor==1.1.0
88
make -C client/ client

0 commit comments

Comments
 (0)