Skip to content

Commit 7900cb1

Browse files
author
Roja Reddy Sareddy
committed
numpy fixes
1 parent 2e88cd0 commit 7900cb1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/integ/sagemaker/serve/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
SERVE_IN_PROCESS_TIMEOUT = 5
2121
SERVE_MODEL_PACKAGE_TIMEOUT = 10
2222
SERVE_LOCAL_CONTAINER_TIMEOUT = 10
23-
SERVE_SAGEMAKER_ENDPOINT_TIMEOUT = 50
23+
SERVE_SAGEMAKER_ENDPOINT_TIMEOUT = 15
2424
SERVE_SAVE_TIMEOUT = 2
2525

2626
PYTHON_VERSION_IS_NOT_38 = platform.python_version_tuple()[1] != "8"

tests/unit/sagemaker/serve/detector/test_dependency_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
DEPENDENCY_LIST = [
2323
"requests==2.26.0",
2424
"numpy>=2.0.0",
25-
"pandas<=1.3.3",
25+
"pandas>=2.3.0",
2626
"matplotlib<3.5.0",
2727
"scikit-learn>0.24.1",
2828
"Django!=4.0.0",
@@ -35,7 +35,7 @@
3535
EXPECTED_DEPENDENCY_MAP = {
3636
"requests": "==2.26.0",
3737
"numpy": ">=2.0.0",
38-
"pandas": "<=1.3.3",
38+
"pandas": ">=2.3.0",
3939
"matplotlib": "<3.5.0",
4040
"scikit-learn": ">0.24.1",
4141
"Django": "!=4.0.0",

0 commit comments

Comments
 (0)