Skip to content

Commit c8f2852

Browse files
authored
Merge branch 'master' into processing-job-codeartifact-support
2 parents b76427a + 2f2be05 commit c8f2852

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+3624
-1120
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v2.219.0 (2024-05-08)
4+
5+
### Features
6+
7+
* allow choosing js payload by alias in private method
8+
9+
### Bug Fixes and Other Changes
10+
11+
* chore(deps): bump jinja2 from 3.1.3 to 3.1.4 in /requirements/extras
12+
* chore(deps): bump tqdm from 4.66.2 to 4.66.3 in /tests/data/serve_resources/mlflow/pytorch
13+
* chore(deps): bump jinja2 from 3.1.3 to 3.1.4 in /doc
14+
* Updates for SMP v2.3.1
15+
316
## v2.218.1 (2024-05-03)
417

518
### Bug Fixes and Other Changes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.218.2.dev0
1+
2.219.1.dev0

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ sphinx==5.1.1
22
sphinx-rtd-theme==0.5.0
33
docutils==0.15.2
44
packaging==20.9
5-
jinja2==3.1.3
5+
jinja2==3.1.4
66
schema==0.7.5
77
accelerate>=0.24.1,<=0.27.0

requirements/extras/test_requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ attrs>=23.1.0,<24
1818
fabric==2.6.0
1919
requests==2.31.0
2020
sagemaker-experiments==0.1.35
21-
Jinja2==3.1.3
21+
Jinja2==3.1.4
2222
pyvis==0.2.1
2323
pandas>=1.3.5,<1.5
2424
scikit-learn==1.3.0
@@ -36,3 +36,4 @@ onnx>=1.15.0
3636
nbformat>=5.9,<6
3737
accelerate>=0.24.1,<=0.27.0
3838
schema==0.7.5
39+
tensorflow>=2.1,<=2.16

src/sagemaker/fw_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@
142142
"2.1.0",
143143
"2.1.2",
144144
"2.2.0",
145-
"2.3.0",
146145
],
147146
}
148147

@@ -170,6 +169,7 @@
170169
"2.1.2",
171170
"2.2.0",
172171
"2.3.0",
172+
"2.3.1",
173173
]
174174

175175
TRAINIUM_SUPPORTED_DISTRIBUTION_STRATEGIES = ["torch_distributed"]

src/sagemaker/image_uri_config/pytorch-smp.json

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"version_aliases": {
77
"2.0": "2.0.1",
88
"2.1": "2.1.2",
9-
"2.2": "2.3.0",
10-
"2.2.0": "2.3.0"
9+
"2.2": "2.3.1",
10+
"2.2.0": "2.3.1"
1111
},
1212
"versions": {
1313
"2.0.1": {
@@ -109,6 +109,31 @@
109109
"us-west-2": "658645717510"
110110
},
111111
"repository": "smdistributed-modelparallel"
112+
},
113+
"2.3.1": {
114+
"py_versions": [
115+
"py310"
116+
],
117+
"registries": {
118+
"ap-northeast-1": "658645717510",
119+
"ap-northeast-2": "658645717510",
120+
"ap-northeast-3": "658645717510",
121+
"ap-south-1": "658645717510",
122+
"ap-southeast-1": "658645717510",
123+
"ap-southeast-2": "658645717510",
124+
"ca-central-1": "658645717510",
125+
"eu-central-1": "658645717510",
126+
"eu-north-1": "658645717510",
127+
"eu-west-1": "658645717510",
128+
"eu-west-2": "658645717510",
129+
"eu-west-3": "658645717510",
130+
"sa-east-1": "658645717510",
131+
"us-east-1": "658645717510",
132+
"us-east-2": "658645717510",
133+
"us-west-1": "658645717510",
134+
"us-west-2": "658645717510"
135+
},
136+
"repository": "smdistributed-modelparallel"
112137
}
113138
}
114139
}

0 commit comments

Comments
 (0)