Skip to content

Commit 0102bca

Browse files
author
Roja Reddy Sareddy
committed
numpy fixes
1 parent 7900cb1 commit 0102bca

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
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>=1.26.4,<2.3.0",
42+
"numpy>=1.26.4,<2.3.3",
4343
"omegaconf>=2.2,<3",
4444
"packaging>=23.0,<25",
4545
"pandas",

requirements/extras/test_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tox==3.24.5
2-
numpy>=2.0.0, <2.3.0
2+
numpy>=2.0.0, <2.3.3
33
build[virtualenv]==1.2.1
44
flake8==7.1.2
55
pytest==6.2.5

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,<2.3.0
15+
- numpy>=2.0.0,<2.3.3
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
@@ -11,7 +11,7 @@ dependencies:
1111
- defusedxml==0.7.1
1212
- dill==0.3.9
1313
- gmpy2==2.1.2
14-
- numpy>=2.0.0,<2.3.0
14+
- numpy>=2.0.0,<2.3.3
1515
- opt-einsum==3.3.0
1616
- packaging==24.0
1717
- pandas>=2.3.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cloudpickle==2.2.1
55
defusedxml==0.7.1
66
dill==0.3.9
77
gmpy2==2.1.2
8-
numpy>=2.0.0,<2.3.0
8+
numpy>=2.0.0,<2.3.3
99
opt-einsum==3.3.0
1010
packaging>=23.0,<25
1111
pandas>=2.3.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ dependencies:
66
- pip:
77
- mlflow>=2.16.1
88
- cloudpickle>=2.2.1
9-
- numpy>=1.26.4
9+
- numpy>=1.26.4,<2.3.3
1010
- tensorflow==2.18.0
1111
name: mlflow-env
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
mlflow==2.20.3
22
cloudpickle>=2.2.1
3-
numpy>=1.26.4
3+
numpy>=1.26.4,<2.3.3
44
tensorflow==2.18.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66
- pip:
77
- mlflow>=2.16.1
88
- lz4==4.3.2
9-
- numpy>=1.26.4
9+
- numpy>=1.26.4,<2.3.3
1010
- pandas>=2.3.0
1111
- psutil==5.9.8
1212
- scikit-learn==1.6.1

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
mlflow==3.1.0
22
lz4==4.3.2
3-
numpy>=1.26.4
3+
numpy>=1.26.4,<2.3.3
44
pandas>=2.3.0
55
psutil==5.9.8
66
scikit-learn==1.6.1

0 commit comments

Comments
 (0)