Skip to content

Commit

Permalink
Merge pull request deis#2315 from mboersma/update-python-requests
Browse files Browse the repository at this point in the history
chore(*): update python requests to 2.4.3
  • Loading branch information
mboersma committed Oct 29, 2014
2 parents 5985add + 57e650a commit 3c307ea
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN mkdir -p /var/run/sshd
RUN curl -sSL https://raw.githubusercontent.com/pypa/pip/1.5.6/contrib/get-pip.py | python -

# install hook dependencies
RUN pip install pyyaml==3.11 requests==2.4.1
RUN pip install pyyaml==3.11 requests==2.4.3

# configure locale
RUN echo LANG="en_US.UTF-8" > /etc/default/locale && dpkg-reconfigure locales
Expand Down
2 changes: 1 addition & 1 deletion client/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

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

Expand Down
2 changes: 1 addition & 1 deletion client/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ you used to provision the server. You can make a symlink or shell alias for

.. code-block:: console
$ pip install docopt==0.6.2 python-dateutil==2.2 requests==2.3.0 termcolor==1.1.0
$ pip install docopt==0.6.2 python-dateutil==2.2 requests==2.4.3 termcolor==1.1.0
$ sudo ln -fs $(pwd)/client/deis.py /usr/local/bin/deis
$ deis
Usage: deis <command> [<args>...]
Expand Down
2 changes: 1 addition & 1 deletion client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
],
long_description=LONG_DESCRIPTION,
install_requires=[
'docopt==0.6.2', 'python-dateutil==2.2', 'requests==2.3.0', 'termcolor==1.1.0'
'docopt==0.6.2', 'python-dateutil==2.2', 'requests==2.4.3', 'termcolor==1.1.0'
],
zip_safe=True,
**KWARGS)
5 changes: 3 additions & 2 deletions controller/dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Deis client requirements
docopt==0.6.2
python-dateutil==2.2
requests==2.3.0
requests==2.4.3
termcolor==1.1.0

# PyInstaller builds client binaries
PyInstaller==2.1

# Deis documentation requirements
Sphinx>=1.2.2
Sphinx>=1.2.3
smartypants>=1.8.6
sphinxcontrib-httpdomain>=1.3.0

Expand Down
2 changes: 1 addition & 1 deletion docs/docs_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ South==1.0
# Deis client requirements
docopt==0.6.2
python-dateutil==2.2
requests==2.3.0
requests==2.4.3
termcolor==1.1.0

# Deis documentation requirements
Expand Down
2 changes: 1 addition & 1 deletion docs/using_deis/install-client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ you used to provision the server. You can make a symlink or shell alias for

.. code-block:: console
$ pip install docopt==0.6.2 python-dateutil==2.2 requests==2.3.0 termcolor==1.1.0
$ pip install docopt==0.6.2 python-dateutil==2.2 requests==2.4.3 termcolor==1.1.0
$ sudo ln -fs $(pwd)/client/deis.py /usr/local/bin/deis
$ deis
Usage: deis <command> [<args>...]
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/build-deis-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

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

0 comments on commit 3c307ea

Please sign in to comment.