Skip to content

Commit 7deab4b

Browse files
authored
Remove pyYAML dependency. (#585)
1 parent 63a22d6 commit 7deab4b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ CHANGELOG
1313
* doc-fix: Specify that Local Mode supports only framework and BYO cases
1414
* doc-fix: Add missing classes to API docs
1515
* doc-fix: Add information on necessary AWS permissions
16+
* bug-fix: Remove PyYAML to let docker-compose install the right version
1617

1718
1.16.3
1819
======

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ def read(fname):
3434

3535
# Declare minimal set for installation
3636
required_packages = ['boto3>=1.9.64', 'numpy>=1.9.0', 'protobuf>=3.1', 'scipy>=0.19.0',
37-
'urllib3>=1.21', 'PyYAML>=3.2, <4', 'protobuf3-to-dict>=0.1.5',
38-
'docker-compose>=1.23.0', 'requests>=2.20.0, <2.21']
37+
'urllib3>=1.21', 'protobuf3-to-dict>=0.1.5', 'docker-compose>=1.23.0',
38+
'requests>=2.20.0, <2.21']
3939

4040
# enum is introduced in Python 3.4. Installing enum back port
4141
if sys.version_info < (3, 4):

0 commit comments

Comments
 (0)