Skip to content

Commit 6e4901d

Browse files
committed
Deprecation warning for TF 2.11 and PT 2.0
2 parents 31cd40d + 30462b2 commit 6e4901d

File tree

6 files changed

+15
-3
lines changed

6 files changed

+15
-3
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
concurrency = threading
33
omit = sagemaker/tests/*
44
timid = True
5+
disable_warnings = module-not-measured

CHANGELOG.md

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

3+
## v2.140.0 (2023-03-17)
4+
5+
### Features
6+
7+
* SDK changes for TRCOMP support
8+
9+
### Bug Fixes and Other Changes
10+
11+
* [Feature - Hugging Face] Update Transformers 4.26 - PyTorch 1.13.1 Image uri
12+
313
## v2.139.0 (2023-03-15)
414

515
### Features

VERSION

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

requirements/extras/test_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ awslogs==0.14.0
1212
black==22.3.0
1313
stopit==1.1.2
1414
# Update tox.ini to have correct version of airflow constraints file
15-
apache-airflow==2.4.1
15+
apache-airflow==2.5.1
1616
apache-airflow-providers-amazon==4.0.0
1717
attrs==22.1.0
1818
fabric==2.6.0

tests/integ/test_marketplace.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ def iris_image(sagemaker_session):
233233
_delete_repository(ecr_client, algorithm_name)
234234

235235

236+
@pytest.mark.xfail(reason="marking this for xfail until we work on the test failure to be fixed")
236237
def test_create_model_package(sagemaker_session, boto_session, iris_image):
237238
MODEL_NAME = "iris-classifier-mp"
238239
# Prepare

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ passenv =
7373
# Can be used to specify which tests to run, e.g.: tox -- -s
7474
commands =
7575
python -c "import os; os.system('install-custom-pkgs --install-boto-wheels')"
76-
pip install 'apache-airflow==2.4.1' --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.4.1/constraints-3.10.txt"
76+
pip install 'apache-airflow==2.5.1' --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.5.1/constraints-3.7.txt"
7777

7878
pytest --cov=sagemaker --cov-append {posargs}
7979
{env:IGNORE_COVERAGE:} coverage report -i --fail-under=86

0 commit comments

Comments
 (0)