Skip to content

Commit a6ecd11

Browse files
committed
change: Allow attrs v24 package dependency
1 parent de5de9b commit a6ecd11

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.11",
3232
]
3333
dependencies = [
34-
"attrs>=23.1.0,<24",
34+
"attrs>=23.1.0,<25",
3535
"boto3>=1.34.142,<2.0",
3636
"cloudpickle==2.2.1",
3737
"docker",

requirements/extras/test_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ stopit==1.1.2
1515
# Update tox.ini to have correct version of airflow constraints file
1616
apache-airflow==2.9.3
1717
apache-airflow-providers-amazon==7.2.1
18-
attrs>=23.1.0,<24
18+
attrs>=23.1.0,<25
1919
fabric==2.6.0
2020
requests==2.32.2
2121
sagemaker-experiments==0.1.35

src/sagemaker/serve/utils/conda_in_process.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88
- fastapi>=0.111.0
99
- nest-asyncio
1010
- pip>=23.0.1
11-
- attrs>=23.1.0,<24
11+
- attrs>=23.1.0,<25
1212
- boto3>=1.34.142,<2.0
1313
- cloudpickle==2.2.1
1414
- google-pasta

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"matplotlib<3.5.0",
2727
"scikit-learn>0.24.1",
2828
"Django!=4.0.0",
29-
"attrs>=23.1.0,<24",
29+
"attrs>=23.1.0,<25",
3030
"torch@https://download.pytorch.org/whl/cpu/torch-2.0.0%2Bcpu-cp310-cp310-linux_x86_64.whl",
3131
"# some comment",
3232
"boto3==1.26.*",
@@ -39,7 +39,7 @@
3939
"matplotlib": "<3.5.0",
4040
"scikit-learn": ">0.24.1",
4141
"Django": "!=4.0.0",
42-
"attrs": ">=23.1.0,<24",
42+
"attrs": ">=23.1.0,<25",
4343
"torch": "@https://download.pytorch.org/whl/cpu/torch-2.0.0%2Bcpu-cp310-cp310-linux_x86_64.whl",
4444
"boto3": "==1.26.*",
4545
}

0 commit comments

Comments
 (0)