Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Master ci py312 for PR test #5066

Open
wants to merge 36 commits into
base: master-ci-py312-pr-test
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
4aa6c7c
Test py312 ci support
mollyheamazon Feb 26, 2025
280424d
Test py312 ci support
mollyheamazon Feb 27, 2025
1374184
first commit
mollyheamazon Dec 18, 2024
49de844
test to point to personal stack
mollyheamazon Jan 2, 2025
696cb47
changed tox.ini
mollyheamazon Feb 27, 2025
5d35bd0
Revert "changed tox.ini"
mollyheamazon Feb 27, 2025
2ab95fb
Revert "Revert "changed tox.ini""
mollyheamazon Feb 27, 2025
dc2fcd5
Revert "Revert "Revert "changed tox.ini"""
mollyheamazon Feb 27, 2025
f143ca7
Revert "Revert "changed tox.ini""
mollyheamazon Feb 27, 2025
31d7478
Revert "changed tox.ini"
mollyheamazon Feb 27, 2025
f78febe
Revert "test to point to personal stack"
mollyheamazon Feb 27, 2025
7669550
Revert "first commit"
mollyheamazon Feb 27, 2025
598447f
add pyproject.toml
mollyheamazon Feb 27, 2025
c915fed
add py312 to ci
mollyheamazon Feb 27, 2025
1f0f608
Merge branch 'master-ci-py312-pr-test' into master-ci-py312
mollyheamazon Feb 27, 2025
332389c
bump numpy version
mollyheamazon Feb 27, 2025
041c739
numpy version change
mollyheamazon Feb 27, 2025
88fbe0c
add py312
mollyheamazon Feb 27, 2025
5c20eee
upgrade pip version
mollyheamazon Feb 27, 2025
3feadc5
add setuptools wheel to tox.ini
mollyheamazon Feb 28, 2025
a27527d
add pyyaml version constraint, remove py312 from docstring because th…
mollyheamazon Feb 28, 2025
340ab3b
update pyyaml version constraint
mollyheamazon Feb 28, 2025
5bfbb55
update pyyaml version constraint
mollyheamazon Feb 28, 2025
5084e6f
deprecate py38
mollyheamazon Feb 28, 2025
f679f2c
bump scipy
mollyheamazon Feb 28, 2025
6655760
bump tensorflow and tensorboard
mollyheamazon Mar 1, 2025
4116094
bump dill
mollyheamazon Mar 1, 2025
1a23c2a
bump apache-airflow to ensure dill and greenlet version
mollyheamazon Mar 1, 2025
9b9eb32
remove constraint for apache-airflow
mollyheamazon Mar 3, 2025
b5da915
remove constraint for apache-airflow
mollyheamazon Mar 3, 2025
e0caf76
bump torch version
mollyheamazon Mar 3, 2025
c69de67
bump torchvision version
mollyheamazon Mar 3, 2025
ff0ab5a
modified tests to comply with py312 requirements
mollyheamazon Mar 3, 2025
e25e8b0
modified tests again to comply with py312 requirements
mollyheamazon Mar 4, 2025
5dd3c04
git related
mollyheamazon Mar 4, 2025
eb51f6f
remove assert before assert_called_once_with
mollyheamazon Mar 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ start_time=`date +%s`
tox -e sphinx,doc8 --parallel all
./ci-scripts/displaytime.sh 'sphinx,doc8' $start_time
start_time=`date +%s`
tox -e py38,py39,py310 --parallel all -- tests/unit
./ci-scripts/displaytime.sh 'py38,py39,py310 unit' $start_time
tox -e py39,py310,py311,py312 --parallel all -- tests/unit
./ci-scripts/displaytime.sh 'py39,py310,py311,py312 unit' $start_time
2 changes: 1 addition & 1 deletion .github/workflows/codebuild-ci-health.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["py38", "py39", "py310", "py311"]
python-version: ["py39", "py310", "py311","py312"]
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codebuild-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["py38","py39","py310","py311"]
python-version: ["py39","py310","py311","py312"]
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "sagemaker"
dynamic = ["version", "optional-dependencies"]
description = "Open source library for training and deploying models on Amazon SageMaker."
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.9"
authors = [
{ name = "Amazon Web Services" },
]
Expand All @@ -25,10 +25,10 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"attrs>=23.1.0,<24",
Expand All @@ -39,15 +39,15 @@ dependencies = [
"google-pasta",
"importlib-metadata>=1.4.0,<7.0",
"jsonschema",
"numpy>=1.9.0,<2.0",
"numpy>=1.26.0,<2.0",
"omegaconf>=2.2,<=2.3",
"packaging>=20.0",
"pandas",
"pathos",
"platformdirs",
"protobuf>=3.12,<6.0",
"psutil",
"PyYAML~=6.0",
"PyYAML>=6.0.1",
"requests",
"sagemaker-core>=1.0.17,<2.0.0",
"schema",
Expand Down
2 changes: 1 addition & 1 deletion requirements/extras/local_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
urllib3>=1.26.8,<3.0.0
docker>=5.0.2,<8.0.0
PyYAML>=5.4.1,<7
PyYAML>=6.0.1,<7
2 changes: 1 addition & 1 deletion requirements/extras/scipy_requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scipy==1.10.1
scipy==1.11.3
10 changes: 5 additions & 5 deletions requirements/extras/test_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tox==3.24.5
numpy>=1.24.0
numpy>=1.26.0,<2.0
build[virtualenv]==1.2.1
flake8==4.0.1
pytest==6.2.5
Expand All @@ -14,7 +14,7 @@ awslogs==0.14.0
black==24.3.0
stopit==1.1.2
# Update tox.ini to have correct version of airflow constraints file
apache-airflow==2.9.3
apache-airflow==2.10.4
apache-airflow-providers-amazon==7.2.1
attrs>=23.1.0,<24
fabric==2.6.0
Expand All @@ -26,13 +26,13 @@ pandas==1.4.4
scikit-learn==1.3.0
cloudpickle==2.2.1
jsonpickle<4.0.0
PyYAML==6.0
PyYAML>=6.0.1
# TODO find workaround
xgboost>=1.6.2,<=1.7.6
pillow>=10.0.1,<=11
opentelemetry-proto==1.27.0
protobuf==4.25.5
tensorboard>=2.9.0,<=2.15.2
tensorboard>=2.16.2,<=2.18.0
transformers==4.46.1
sentencepiece==0.1.99
# https://github.com/triton-inference-server/server/issues/6246
Expand All @@ -42,7 +42,7 @@ onnx==1.17.0
nbformat>=5.9,<6
accelerate>=0.24.1,<=0.27.0
schema==0.7.5
tensorflow>=2.9.0,<=2.15.1
tensorflow>=2.16.2,<=2.18.0
mlflow>=2.12.2,<2.13
huggingface_hub==0.26.2
uvicorn>=0.30.1
Expand Down
8 changes: 4 additions & 4 deletions src/sagemaker/serve/utils/conda_in_process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ dependencies:
- boto3>=1.34.142,<2.0
- cloudpickle==2.2.1
- google-pasta
- numpy>=1.9.0,<2.0
- numpy>=1.26.0,<2.0
- protobuf>=3.12,<5.0
- smdebug_rulesconfig==1.0.1
- importlib-metadata>=1.4.0,<7.0
- packaging>=20.0
- pandas
- pathos
- schema
- PyYAML~=6.0
- PyYAML>=6.0.1
- jsonschema
- platformdirs
- tblib>=1.7.0,<4
Expand All @@ -43,7 +43,7 @@ dependencies:
- colorama>=0.4.4
- contextlib2>=21.6.0
- decorator>=5.1.1
- dill>=0.3.6
- dill>=0.3.9
- docutils>=0.16
- entrypoints>=0.4
- filelock>=3.11.0
Expand Down Expand Up @@ -82,7 +82,7 @@ dependencies:
- python-dateutil>=2.8.2
- pytz>=2023.3
- pytz-deprecation-shim>=0.1.0.post0
- pyyaml>=5.4.1
- pyyaml>=6.0.1
- regex>=2023.3.23
- requests>=2.28.2
- rich>=13.3.4
Expand Down
4 changes: 2 additions & 2 deletions src/sagemaker/serve/utils/in_process_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cloudpickle==2.2.1
colorama>=0.4.4
contextlib2>=21.6.0
decorator>=5.1.1
dill>=0.3.6
dill>=0.3.9
docutils>=0.16
entrypoints>=0.4
filelock>=3.11.0
Expand Down Expand Up @@ -50,7 +50,7 @@ pyrsistent>=0.19.3
python-dateutil>=2.8.2
pytz>=2023.3
pytz-deprecation-shim>=0.1.0.post0
pyyaml>=5.4.1
pyyaml>=6.0.1
regex>=2023.3.23
requests>=2.28.2
rich>=13.3.4
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scipy>=1.8.1
scipy>=1.11.3
2 changes: 1 addition & 1 deletion tests/data/remote_function/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scipy==1.10.1
scipy==1.11.3
2 changes: 1 addition & 1 deletion tests/data/serve_resources/mlflow/pytorch/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
- cffi==1.16.0
- cloudpickle==2.2.1
- defusedxml==0.7.1
- dill==0.3.8
- dill==0.3.9
- gmpy2==2.1.2
- numpy==1.26.4
- opt-einsum==3.3.0
Expand Down
4 changes: 2 additions & 2 deletions tests/data/serve_resources/mlflow/pytorch/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ astunparse==1.6.3
cffi==1.16.0
cloudpickle==2.2.1
defusedxml==0.7.1
dill==0.3.8
dill==0.3.9
gmpy2==2.1.2
numpy==1.24.4
numpy==1.26.4
opt-einsum==3.3.0
packaging==21.3
pandas==2.2.1
Expand Down
4 changes: 2 additions & 2 deletions tests/data/serve_resources/mlflow/xgboost/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
mlflow==2.13.2
lz4==4.3.2
numpy==1.24.4
numpy==1.26.4
pandas==2.0.3
psutil==5.9.8
scikit-learn==1.3.2
scipy==1.10.1
scipy==1.11.3
xgboost==1.7.1
2 changes: 1 addition & 1 deletion tests/data/workflow/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scipy==1.10.1
scipy==1.11.3
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def remote_decorator_config_with_filter(sagemaker_session):
def test_prepare_and_upload_callable(mock_stored_function, config_uploader, wrapped_func):
mock_stored_function.save(wrapped_func).return_value = None
config_uploader._prepare_and_upload_callable(wrapped_func, "s3_base_uri", sagemaker_session)
assert mock_stored_function.called_once_with(
mock_stored_function.assert_called_once_with(
s3_base_uri="s3_base_uri",
s3_kms_key=config_uploader.remote_decorator_config.s3_kms_key,
hmac_key="some_secret_key",
Expand Down Expand Up @@ -244,7 +244,7 @@ def test_prepare_step_input_channel(
)
remote_decorator_config = config_uploader.remote_decorator_config

assert mock_upload_callable.called_once_with(wrapped_func)
mock_upload_callable.assert_called_once_with(wrapped_func)

mock_script_upload.assert_called_once_with(
spark_config=config_uploader.remote_decorator_config.spark_config,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def test_to_pipeline(
)
assert pipeline_arn == PIPELINE_ARN

assert mock_upload_callable.called_once_with(job_function)
mock_upload_callable.assert_called_once_with(job_function)
local_dependencies_path = mock_runtime_manager().snapshot()
mock_python_version = mock_runtime_manager()._current_python_version()
container_args.extend(["--client_python_version", mock_python_version])
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/sagemaker/huggingface/test_llm_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_huggingface_model_metadata_unauthorized_exception(self, mock_urllib):
"Trying to access a gated/private HuggingFace model without valid credentials. "
"Please provide a HUGGING_FACE_HUB_TOKEN in env_vars"
)
self.assertEquals(expected_error_msg, str(context.exception))
self.assertEqual(expected_error_msg, str(context.exception))

@patch("sagemaker.huggingface.llm_utils.urllib")
def test_huggingface_model_metadata_general_exception(self, mock_urllib):
Expand All @@ -76,7 +76,7 @@ def test_huggingface_model_metadata_general_exception(self, mock_urllib):
expected_error_msg = (
f"Did not find model metadata for the following HuggingFace Model ID {MOCK_HF_ID}"
)
self.assertEquals(expected_error_msg, str(context.exception))
self.assertEqual(expected_error_msg, str(context.exception))

@patch("huggingface_hub.snapshot_download")
def test_download_huggingface_model_metadata(self, mock_snapshot_download):
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/sagemaker/jumpstart/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14360,7 +14360,7 @@
"jmespath==1.0.1",
"jsonschema==4.17.3",
"multiprocess==0.70.14",
"numpy==1.24.3",
"numpy==1.26.4",
"oscrypto==1.3.0",
"packaging==23.1",
"pandas==2.0.2",
Expand Down
Loading
Loading