Skip to content

Commit 8a68dbb

Browse files
author
Roja Reddy Sareddy
committed
resolve conflict dependency with numpy 2.0
1 parent 5817b2e commit 8a68dbb

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

Diff for: tests/data/serve_resources/mlflow/pytorch/conda.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies:
44
- python=3.10.13
55
- pip<=23.3.1
66
- pip:
7-
- mlflow==2.16.1
7+
- mlflow>=2.16.1
88
- astunparse==1.6.3
99
- cffi==1.16.0
1010
- cloudpickle==2.2.1

Diff for: tests/data/serve_resources/mlflow/pytorch/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlflow==2.16.1
1+
mlflow>=2.16.1
22
astunparse==1.6.3
33
cffi==1.16.0
44
cloudpickle==2.2.1

Diff for: tests/data/serve_resources/mlflow/tensorflow/conda.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dependencies:
44
- python=3.10.13
55
- pip<=23.3.1
66
- pip:
7-
- mlflow==2.16.1
7+
- mlflow>=2.16.1
88
- cloudpickle==2.2.1
9-
- numpy>=2.0.0,<2.3.0
10-
- tensorflow==2.17.0
9+
- numpy==2.0.0
10+
- tensorflow==2.18.0
1111
name: mlflow-env
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlflow==2.16.1
1+
mlflow>=2.16.1
22
cloudpickle==2.2.1
3-
numpy>=2.0.0,<2.3.0
4-
tensorflow==2.17.0
3+
numpy==2.0.0
4+
tensorflow==2.18.0

Diff for: tests/data/serve_resources/mlflow/xgboost/conda.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ dependencies:
44
- python=3.10.13
55
- pip<=23.3.1
66
- pip:
7-
- mlflow==2.16.1
7+
- mlflow>=2.16.1
88
- lz4==4.3.2
99
- numpy>=2.0.0,<2.3.0
1010
- pandas==2.2.3
1111
- psutil==5.9.8
1212
- scikit-learn==1.6.1
1313
- scipy==1.13.0
14-
- xgboost==1.7.1
14+
- xgboost==2.1.4
1515
name: mlflow-env
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
mlflow==2.16.1
1+
mlflow>=2.16.1
22
lz4==4.3.2
33
numpy>=2.0.0,<2.3.0
44
pandas==2.2.3
55
psutil==5.9.8
66
scikit-learn==1.6.1
77
scipy==1.13.0
8-
xgboost==1.7.1
8+
xgboost==2.1.4

Diff for: tests/unit/sagemaker/serve/detector/test_dependency_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
EXPECTED_DEPENDENCY_MAP = {
3636
"requests": "==2.26.0",
37-
"numpy": "==1.26.4",
37+
"numpy": ">=2.0.0",
3838
"pandas": "<=1.3.3",
3939
"matplotlib": "<3.5.0",
4040
"scikit-learn": ">0.24.1",

0 commit comments

Comments
 (0)