Skip to content

Commit 2eb87bc

Browse files
author
Roja Reddy Sareddy
committed
resolve conflict dependency with numpy 2.0
1 parent 96a34bd commit 2eb87bc

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939
"google-pasta",
4040
"importlib-metadata>=1.4.0,<7.0",
4141
"jsonschema",
42-
"numpy>=2.0.0",
42+
"numpy>=2.0.0,<2.3.0",
4343
"omegaconf>=2.2,<=2.3",
4444
"packaging>=20.0",
4545
"pandas==2.2.3",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
scipy==1.15.2
1+
scipy==1.13.0

requirements/extras/test_requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tox==3.24.5
2-
numpy>=2.0.0
2+
numpy>=2.0.0, <2.3.0
33
build[virtualenv]==1.2.1
44
flake8==4.0.1
55
pytest==6.2.5
@@ -23,7 +23,7 @@ sagemaker-experiments==0.1.35
2323
Jinja2==3.1.6
2424
pyvis==0.2.1
2525
pandas==2.2.3
26-
scikit-learn==1.6.1
26+
scikit-learn==1.4.0
2727
cloudpickle==2.2.1
2828
jsonpickle<4.0.0
2929
PyYAML==6.0

src/sagemaker/serve/utils/conda_in_process.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
- boto3>=1.34.142,<2.0
1313
- cloudpickle==2.2.1
1414
- google-pasta
15-
- numpy>=2.0.0
15+
- numpy>=2.0.0,<2.3.0
1616
- protobuf>=3.12,<5.0
1717
- smdebug_rulesconfig==1.0.1
1818
- importlib-metadata>=1.4.0,<7.0

tests/data/serve_resources/mlflow/pytorch/conda.yaml

Lines changed: 1 addition & 1 deletion
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.10.2
7+
- mlflow==2.16.1
88
- astunparse==1.6.3
99
- cffi==1.16.0
1010
- cloudpickle==2.2.1

tests/data/serve_resources/mlflow/pytorch/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
mlflow==2.13.2
1+
mlflow==2.16.1
22
astunparse==1.6.3
33
cffi==1.16.0
44
cloudpickle==2.2.1
55
defusedxml==0.7.1
66
dill==0.3.8
77
gmpy2==2.1.2
8-
numpy>=2.0.0
8+
numpy>=2.0.0,<2.3.0
99
opt-einsum==3.3.0
1010
packaging==21.3
1111
pandas==2.2.1

tests/data/serve_resources/mlflow/tensorflow/conda.yaml

Lines changed: 2 additions & 2 deletions
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.11.1
7+
- mlflow==2.16.1
88
- cloudpickle==2.2.1
9-
- numpy>=2.0.0
9+
- numpy>=2.0.0,<2.3.0
1010
- tensorflow==2.16.1
1111
name: mlflow-env
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlflow==2.13.2
1+
mlflow==2.16.1
22
cloudpickle==2.2.1
3-
numpy>=2.0.0
3+
numpy>=2.0.0,<2.3.0
44
tensorflow==2.16.1

tests/data/serve_resources/mlflow/xgboost/conda.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ dependencies:
44
- python=3.10.13
55
- pip<=23.3.1
66
- pip:
7-
- mlflow==2.11.1
7+
- mlflow==2.16.1
88
- lz4==4.3.2
9-
- numpy>=2.0.0
9+
- numpy>=2.0.0,<2.3.0
1010
- pandas==2.2.3
1111
- psutil==5.9.8
1212
- scikit-learn==1.3.2

tests/data/serve_resources/mlflow/xgboost/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
mlflow==2.13.2
1+
mlflow==2.16.1
22
lz4==4.3.2
3-
numpy>=2.0.0
3+
numpy>=2.0.0,<2.3.0
44
pandas==2.2.3
55
psutil==5.9.8
66
scikit-learn==1.3.2

0 commit comments

Comments
 (0)