Skip to content

Commit 3ec0123

Browse files
authored
upgrade dependencies (#128)
1 parent 3c151ab commit 3ec0123

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

requirements/developer.pip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-r user.pip
22
pep8 >= 1.7.0
3-
pytest >= 2.9.0
4-
pytest-cov >= 2.2.1
3+
pytest >= 2.9.2
4+
pytest-cov >= 2.3.0
55
# PyYAML # requirement already covered by setup.py

requirements/maintainer.pip

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-r developer.pip
22
wheel >= 0.29.0
3-
twine >= 1.6.5
4-
pypandoc >= 1.1.3
5-
PyInstaller >= 3.1.1
3+
twine >= 1.7.4
4+
pypandoc >= 1.2.0
5+
PyInstaller >= 3.2

requirements/user.pip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NOTE: Run pip from Flintrock's root directory, not from the directory containing
22
# this file.
33

4-
setuptools >= 20.2.2
4+
setuptools >= 24.0.2
55

66
# NOTE: The `-e .` syntax lets us reuse the requirements already specified under
77
# `install_requires` in setup.py.

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,16 @@
4949
# totally break Flintrock.
5050
# For example: https://github.com/paramiko/paramiko/issues/615
5151
install_requires=[
52-
'boto3 == 1.2.6',
53-
'botocore == 1.4.1',
54-
'click == 6.3',
52+
'boto3 == 1.3.1',
53+
'botocore == 1.4.37',
54+
'click == 6.6',
5555
'paramiko == 1.15.4',
5656
'PyYAML == 3.11',
57-
# This is to make PyInstaller work, since dateutil 2.5.0
58-
# packaging appears to be broken.
57+
# This is to ensure that PyInstaller works. dateutil is an
58+
# indirect dependency of Flintrock, and PyInstaller chokes on
59+
# dateutil 2.5.0.
5960
# See: https://github.com/pyinstaller/pyinstaller/issues/1848
60-
'python-dateutil == 2.4.2',
61+
'python-dateutil >= 2.5.3',
6162
],
6263

6364
entry_points={

0 commit comments

Comments
 (0)