Skip to content

Commit 47e034f

Browse files
committed
change: add pandas to required dependency
1 parent a8d391c commit 47e034f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def read_version():
4242
"smdebug_rulesconfig==1.0.1",
4343
"importlib-metadata>=1.4.0",
4444
"packaging>=20.0",
45+
"pandas",
4546
]
4647

4748
# Specific use case dependencies
@@ -75,7 +76,6 @@ def read_version():
7576
"fabric>=2.0",
7677
"requests>=2.20.0, <3",
7778
"sagemaker-experiments",
78-
"pandas",
7979
],
8080
)
8181

@@ -85,7 +85,9 @@ def read_version():
8585
description="Open source library for training and deploying models on Amazon SageMaker.",
8686
packages=find_packages("src"),
8787
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+
],
8991
include_package_data=True,
9092
long_description=read("README.rst"),
9193
author="Amazon Web Services",

0 commit comments

Comments
 (0)