File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ def read_version():
42
42
"smdebug_rulesconfig==1.0.1" ,
43
43
"importlib-metadata>=1.4.0" ,
44
44
"packaging>=20.0" ,
45
+ "pandas" ,
45
46
]
46
47
47
48
# Specific use case dependencies
@@ -75,7 +76,6 @@ def read_version():
75
76
"fabric>=2.0" ,
76
77
"requests>=2.20.0, <3" ,
77
78
"sagemaker-experiments" ,
78
- "pandas" ,
79
79
],
80
80
)
81
81
@@ -85,7 +85,9 @@ def read_version():
85
85
description = "Open source library for training and deploying models on Amazon SageMaker." ,
86
86
packages = find_packages ("src" ),
87
87
package_dir = {"" : "src" },
88
- py_modules = [os .path .splitext (os .path .basename (path ))[0 ] for path in glob ("src/*.py" )],
88
+ py_modules = [
89
+ os .path .splitext (os .path .basename (path ))[0 ] for path in glob ("src/*.py" )
90
+ ],
89
91
include_package_data = True ,
90
92
long_description = read ("README.rst" ),
91
93
author = "Amazon Web Services" ,
You can’t perform that action at this time.
0 commit comments