Skip to content

Commit 7854b31

Browse files
authored
Merge branch 'master' into patch-1
2 parents 3813390 + 3ac945a commit 7854b31

File tree

6 files changed

+23
-36
lines changed

6 files changed

+23
-36
lines changed

CHANGELOG.md

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

3+
## v2.5.4 (2020-09-08)
4+
5+
### Bug Fixes and Other Changes
6+
7+
* update max_run_wait to max_wait in v2.rst for estimator parameters
8+
* Updating regional account ids for af-south-1 and eu-south-1
9+
* add account ids for af-south-1 and eu-south-1 for debugger rules
10+
11+
## v2.5.3 (2020-09-02)
12+
13+
### Bug Fixes and Other Changes
14+
15+
* Revert "change: update image uri config for pytorch 1.6.0 inference (#1864)"
16+
* update image uri config for pytorch 1.6.0 inference
17+
* add missing framework version image uri config
18+
319
## v2.5.2 (2020-08-31)
420

521
### Bug Fixes and Other Changes

VERSION

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

doc/v2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ The following estimator parameters have been renamed:
231231
+------------------------------+------------------------+
232232
| ``train_use_spot_instances`` | ``use_spot_instances`` |
233233
+------------------------------+------------------------+
234-
| ``train_max_run_wait`` | ``max_run_wait`` |
234+
| ``train_max_run_wait`` | ``max_wait`` |
235235
+------------------------------+------------------------+
236236
| ``train_volume_size`` | ``volume_size`` |
237237
+------------------------------+------------------------+

src/sagemaker/image_uri_config/debugger.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"versions": {
44
"latest": {
55
"registries": {
6+
"af-south-1": "314341159256",
67
"ap-east-1": "199566480951",
78
"ap-northeast-1": "430734990657",
89
"ap-northeast-2": "578805364391",
@@ -14,6 +15,7 @@
1415
"cn-northwest-1": "658757709296",
1516
"eu-central-1": "482524230118",
1617
"eu-north-1": "314864569078",
18+
"eu-south-1": "563282790590",
1719
"eu-west-1": "929884845733",
1820
"eu-west-2": "250201462417",
1921
"eu-west-3": "447278800020",

src/sagemaker/image_uri_config/pytorch.json

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@
5353
"1.2": "1.2.0",
5454
"1.3": "1.3.1",
5555
"1.4": "1.4.0",
56-
"1.5": "1.5.0",
57-
"1.6": "1.6.0"
56+
"1.5": "1.5.0"
5857
},
5958
"versions": {
6059
"0.4.0": {
@@ -285,38 +284,6 @@
285284
"us-west-2": "763104351884"
286285
},
287286
"repository": "pytorch-inference"
288-
},
289-
"1.6.0": {
290-
"py_versions": [
291-
"py3"
292-
],
293-
"registries": {
294-
"af-south-1": "626614931356",
295-
"ap-east-1": "871362719292",
296-
"ap-northeast-1": "763104351884",
297-
"ap-northeast-2": "763104351884",
298-
"ap-south-1": "763104351884",
299-
"ap-southeast-1": "763104351884",
300-
"ap-southeast-2": "763104351884",
301-
"ca-central-1": "763104351884",
302-
"cn-north-1": "727897471807",
303-
"cn-northwest-1": "727897471807",
304-
"eu-central-1": "763104351884",
305-
"eu-north-1": "763104351884",
306-
"eu-west-1": "763104351884",
307-
"eu-west-2": "763104351884",
308-
"eu-west-3": "763104351884",
309-
"eu-south-1": "692866216735",
310-
"me-south-1": "217643126080",
311-
"sa-east-1": "763104351884",
312-
"us-east-1": "763104351884",
313-
"us-east-2": "763104351884",
314-
"us-gov-west-1": "442386744353",
315-
"us-iso-east-1": "886529160074",
316-
"us-west-1": "763104351884",
317-
"us-west-2": "763104351884"
318-
},
319-
"repository": "pytorch-inference"
320287
}
321288
}
322289
},

tests/unit/sagemaker/image_uris/test_debugger.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
from tests.unit.sagemaker.image_uris import expected_uris, regions
1717

1818
ACCOUNTS = {
19+
"af-south-1": "314341159256",
1920
"ap-east-1": "199566480951",
2021
"ap-northeast-1": "430734990657",
2122
"ap-northeast-2": "578805364391",
@@ -27,6 +28,7 @@
2728
"cn-northwest-1": "658757709296",
2829
"eu-central-1": "482524230118",
2930
"eu-north-1": "314864569078",
31+
"eu-south-1": "563282790590",
3032
"eu-west-1": "929884845733",
3133
"eu-west-2": "250201462417",
3234
"eu-west-3": "447278800020",

0 commit comments

Comments
 (0)