Skip to content

Commit d886559

Browse files
committed
Change the order of required packages. Add pyyaml to test-time dependencies.
1 parent 662ead6 commit d886559

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
sagemaker>=1.42.8
12
boto3>=1.9.213
2-
sagemaker==1.42.0
3+
pyyaml

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ def read_version():
3030

3131
# Declare minimal set for installation
3232
required_packages = [
33+
"sagemaker>=1.42.8",
3334
"boto3>=1.9.213",
34-
"sagemaker>=1.42.8"
35+
"pyyaml"
3536
]
3637

3738
# enum is introduced in Python 3.4. Installing enum back port
@@ -67,7 +68,7 @@ def read_version():
6768
"tensorflow>=1.3.0",
6869
"mock>=2.0.0",
6970
"contextlib2==0.5.5",
70-
"IPython"
71+
"IPython",
7172
]
7273
}
7374
)

0 commit comments

Comments
 (0)