Skip to content

Commit

Permalink
Lower the floor for PyYAML
Browse files Browse the repository at this point in the history
This alleviates users that have PyYAML already installed
in their environment so they do not have to upgrade on
pip install.
  • Loading branch information
kyleknap committed Nov 21, 2016
1 parent 9297cc3 commit 6c99aa7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ colorama>=0.2.5,<=0.3.7
mock==1.3.0
rsa>=3.1.2,<=3.5.0
wheel==0.24.0
PyYAML==3.12
PyYAML>=3.10,<=3.12
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ requires-dist =
colorama>=0.2.5,<=0.3.7
docutils>=0.10
rsa>=3.1.2,<=3.5.0
PyYAML==3.12
PyYAML>=3.10,<=3.12
s3transfer>=0.1.9,<0.2.0
argparse>=1.1; python_version=="2.6"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'docutils>=0.10',
'rsa>=3.1.2,<=3.5.0',
's3transfer>=0.1.9,<0.2.0',
'PyYAML==3.12']
'PyYAML>=3.10,<=3.12']


if sys.version_info[:2] == (2, 6):
Expand Down

0 comments on commit 6c99aa7

Please sign in to comment.