Skip to content

Commit 12632e2

Browse files
committed
chore(client): update python-dateutil to 2.4.1
See https://github.com/dateutil/dateutil/releases/tag/2.4.1
1 parent 0758f0c commit 12632e2

5 files changed

Lines changed: 5 additions & 5 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.4.0 PyYAML==3.11 requests==2.5.1 git+https://github.com/pyinstaller/pyinstaller@7413317 termcolor==1.1.0
3+
venv/bin/pip install docopt==0.6.2 python-dateutil==2.4.1 PyYAML==3.11 requests==2.5.1 git+https://github.com/pyinstaller/pyinstaller@7413317 termcolor==1.1.0
44
venv/bin/pyinstaller deis.spec
55
chmod +x dist/deis
66

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.4.0',
60+
'docopt==0.6.2', 'python-dateutil==2.4.1',
6161
'PyYAML==3.11', 'requests==2.5.1',
6262
'termcolor==1.1.0'
6363
],

controller/dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Deis client requirements
22
docopt==0.6.2
3-
python-dateutil==2.4.0
3+
python-dateutil==2.4.1
44
requests==2.5.1
55
termcolor==1.1.0
66

docs/docs_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ South==1.0.2
2323

2424
# Deis client requirements
2525
docopt==0.6.2
26-
python-dateutil==2.4.0
26+
python-dateutil==2.4.1
2727
requests==2.5.1
2828
termcolor==1.1.0
2929

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.4.0 PyYAML==3.11 requests==2.5.1 git+https://github.com/pyinstaller/pyinstaller@7413317 termcolor==1.1.0
7+
pip install docopt==0.6.2 python-dateutil==2.4.1 PyYAML==3.11 requests==2.5.1 git+https://github.com/pyinstaller/pyinstaller@7413317 termcolor==1.1.0
88
make -C client/ client

0 commit comments

Comments
 (0)