Skip to content

Commit f19aa8e

Browse files
authored
Merge branch 'master' into dependabot/pip/tests/data/serve_resources/mlflow/pytorch/mlflow-2.20.3
2 parents e803280 + ba559e6 commit f19aa8e

File tree

101 files changed

+3591
-1965
lines changed

Some content is hidden

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

101 files changed

+3591
-1965
lines changed

.githooks/pre-push

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ start_time=`date +%s`
1212
tox -e sphinx,doc8 --parallel all
1313
./ci-scripts/displaytime.sh 'sphinx,doc8' $start_time
1414
start_time=`date +%s`
15-
tox -e py38,py39,py310 --parallel all -- tests/unit
16-
./ci-scripts/displaytime.sh 'py38,py39,py310 unit' $start_time
15+
tox -e py39,py310,py311,py312 --parallel all -- tests/unit
16+
./ci-scripts/displaytime.sh 'py39,py310,py311,py312 unit' $start_time

.github/workflows/codebuild-ci-health.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: ["py38", "py39", "py310", "py311"]
29+
python-version: ["py39", "py310", "py311","py312"]
3030
steps:
3131
- name: Configure AWS Credentials
3232
uses: aws-actions/configure-aws-credentials@v4

.github/workflows/codebuild-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
strategy:
6464
fail-fast: false
6565
matrix:
66-
python-version: ["py38","py39","py310","py311"]
66+
python-version: ["py39","py310","py311","py312"]
6767
steps:
6868
- name: Configure AWS Credentials
6969
uses: aws-actions/configure-aws-credentials@v4

.pylintrc

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,24 @@ disable=
9494
useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported.
9595
super-with-arguments,
9696
raise-missing-from,
97-
E1136,
97+
C0116, # Missing function or method docstring
98+
C0209, # Use f-string instead of format
99+
E0015, # Unrecognized option found in config
100+
E0702, # Raising a string instead of an exception
101+
E1101, # Module has no member (likely dynamic attr)
102+
E1136, # Value assigned to something inferred as None
103+
R0022, # Useless option value in config
104+
R1710, # Inconsistent return statements
105+
R1714, # Consider using `in` with comparisons
106+
R1729, # Use a generator
107+
R1732,
108+
R1735, # Consider using a dict or list literal
109+
W0237, # Argument renamed in override
110+
W0613, # Unused argument
111+
W0621, # Redefining name from outer scope
112+
W0719
113+
W1404, # Implicit string concatenation
114+
W1514, # `open()` used without encoding
98115

99116
[REPORTS]
100117
# Set the output format. Available formats are text, parseable, colorized, msvs
@@ -436,4 +453,4 @@ analyse-fallback-blocks=no
436453

437454
# Exceptions that will emit a warning when being caught. Defaults to
438455
# "Exception"
439-
overgeneral-exceptions=Exception
456+
overgeneral-exceptions=builtins.Exception

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
version: 2
66

77
build:
8-
os: ubuntu-20.04
8+
os: ubuntu-22.04
99
tools:
10-
python: "3.9"
10+
python: "3.12"
1111

1212

1313
python:

CHANGELOG.md

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

3+
## v2.243.2 (2025-04-16)
4+
5+
### Bug Fixes and Other Changes
6+
7+
* tgi image uri unit tests
8+
* Fix deepdiff dependencies
9+
10+
## v2.243.1 (2025-04-11)
11+
12+
### Bug Fixes and Other Changes
13+
14+
* Added handler for pipeline variable while creating process job
15+
* Fix issue #4856 by copying environment variables
16+
* remove historical job_name caching which causes long job name
17+
* Update instance gpu info
18+
* Master
19+
* Add mlflow tracking arn telemetry
20+
* chore: fix semantic versioning for wildcard identifier
21+
* flaky test
22+
23+
### Documentation Changes
24+
25+
* update pipelines step caching examples to include more steps
26+
* update ModelStep data dependency info
27+
28+
## v2.243.0 (2025-03-27)
29+
30+
### Features
31+
32+
* Enabled update_endpoint through model_builder
33+
34+
### Bug Fixes and Other Changes
35+
36+
* Update for PT 2.5.1, SMP 2.8.0
37+
* chore: move jumpstart region definitions to json file
38+
* fix flaky clarify model monitor test
39+
* fix flaky spark processor integ
40+
* use temp file in unit tests
41+
* Update transformers version
42+
* Aligned disable_output_compression for @remote with Estimator
43+
* Update Jinja version
44+
* update image_uri_configs 03-26-2025 07:18:16 PST
45+
* chore: fix integ tests to use latest version of model
46+
* update image_uri_configs 03-25-2025 07:18:13 PST
47+
* Skip tests failed due to deprecated instance type
48+
* update image_uri_configs 03-21-2025 07:17:55 PST
49+
* factor in set instance type when building JumpStart models in ModelBuilder.
50+
* ADD Documentation to ReadtheDocs for Upgrading torch versions
51+
* add new regions to JUMPSTART_LAUNCHED_REGIONS
52+
353
## v2.242.0 (2025-03-14)
454

555
### Features

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ Supported Python Versions
9494

9595
SageMaker Python SDK is tested on:
9696

97-
- Python 3.8
9897
- Python 3.9
9998
- Python 3.10
10099
- Python 3.11
100+
- Python 3.12
101101

102102
Telemetry
103103
~~~~~~~~~~~~~~~
@@ -191,9 +191,9 @@ Setup a Python environment, and install the dependencies listed in ``doc/require
191191
::
192192

193193
# conda
194-
conda create -n sagemaker python=3.7
194+
conda create -n sagemaker python=3.12
195195
conda activate sagemaker
196-
conda install sphinx=3.1.1 sphinx_rtd_theme=0.5.0
196+
conda install sphinx=5.1.1 sphinx_rtd_theme=0.5.0
197197

198198
# pip
199199
pip install -r doc/requirements.txt

VERSION

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

0 commit comments

Comments
 (0)