Skip to content

Commit 6b5ba12

Browse files
authored
Merge branch 'master' into stacicho-pipelines-local-add-notebook
2 parents e0b59ef + d9559c7 commit 6b5ba12

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## v2.105.0 (2022-08-19)
4+
5+
### Features
6+
7+
* Added endpoint_name to clarify.ModelConfig
8+
* adding workgroup functionality to athena query
9+
10+
### Bug Fixes and Other Changes
11+
12+
* disable debugger/profiler in cgk region
13+
* using unique name for lineage test to unblock PR checks
14+
15+
### Documentation Changes
16+
17+
* update first-party algorithms and structural updates
18+
319
## v2.104.0 (2022-08-17)
420

521
### Features

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.104.1.dev0
1+
2.105.1.dev0

src/sagemaker/image_uri_config/spark.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"cn-northwest-1": "844356804704",
2828
"eu-south-1": "753923664805",
2929
"af-south-1": "309385258863",
30-
"us-gov-west-1": "271483468897"
30+
"us-gov-west-1": "271483468897",
31+
"ap-southeast-3": "732049463269"
3132
},
3233
"repository": "sagemaker-spark-processing"
3334
},
@@ -56,7 +57,8 @@
5657
"cn-northwest-1": "844356804704",
5758
"eu-south-1": "753923664805",
5859
"af-south-1": "309385258863",
59-
"us-gov-west-1": "271483468897"
60+
"us-gov-west-1": "271483468897",
61+
"ap-southeast-3": "732049463269"
6062
},
6163
"repository": "sagemaker-spark-processing"
6264
},
@@ -85,7 +87,8 @@
8587
"cn-northwest-1": "844356804704",
8688
"eu-south-1": "753923664805",
8789
"af-south-1": "309385258863",
88-
"us-gov-west-1": "271483468897"
90+
"us-gov-west-1": "271483468897",
91+
"ap-southeast-3": "732049463269"
8992
},
9093
"repository": "sagemaker-spark-processing"
9194
}

src/sagemaker/model.py

-3
Original file line numberDiff line numberDiff line change
@@ -1581,9 +1581,6 @@ def _create_sagemaker_model(self, *args, **kwargs): # pylint: disable=unused-ar
15811581

15821582
container_def = {"ModelPackageName": model_package_name}
15831583

1584-
if self.env != {}:
1585-
container_def["Environment"] = self.env
1586-
15871584
self._ensure_base_name_if_needed(model_package_name.split("/")[-1])
15881585
self._set_model_name_if_needed()
15891586

0 commit comments

Comments
 (0)