Skip to content

Commit b9404d0

Browse files
authored
Merge branch 'master' into processing-job-codeartifact-support
2 parents 9800681 + 2b35717 commit b9404d0

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

.github/workflows/codebuild-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Run Codestyle & Doc Tests
5656
uses: aws-actions/aws-codebuild-run-build@v1
5757
with:
58-
project-name: sagemaker-python-sdk-ci-codestyle-doc-tests
58+
project-name: ${{ github.event.repository.name }}-ci-codestyle-doc-tests
5959
source-version-override: 'refs/pull/${{ github.event.pull_request.number }}/head^{${{ github.event.pull_request.head.sha }}}'
6060
unit-tests:
6161
runs-on: ubuntu-latest
@@ -74,7 +74,7 @@ jobs:
7474
- name: Run Unit Tests
7575
uses: aws-actions/aws-codebuild-run-build@v1
7676
with:
77-
project-name: sagemaker-python-sdk-ci-unit-tests
77+
project-name: ${{ github.event.repository.name }}-ci-unit-tests
7878
source-version-override: 'refs/pull/${{ github.event.pull_request.number }}/head^{${{ github.event.pull_request.head.sha }}}'
7979
env-vars-for-codebuild: |
8080
PY_VERSION
@@ -93,5 +93,5 @@ jobs:
9393
- name: Run Integ Tests
9494
uses: aws-actions/aws-codebuild-run-build@v1
9595
with:
96-
project-name: sagemaker-python-sdk-ci-integ-tests
96+
project-name: ${{ github.event.repository.name }}-ci-integ-tests
9797
source-version-override: 'refs/pull/${{ github.event.pull_request.number }}/head^{${{ github.event.pull_request.head.sha }}}'

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==24.3.0
1313
stopit==1.1.2
1414
# Update tox.ini to have correct version of airflow constraints file
15-
apache-airflow==2.9.0
15+
apache-airflow==2.9.1
1616
apache-airflow-providers-amazon==7.2.1
1717
attrs>=23.1.0,<24
1818
fabric==2.6.0

tests/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,9 @@ def mxnet_eia_latest_py_version():
253253

254254
@pytest.fixture(scope="module", params=["py2", "py3"])
255255
def pytorch_training_py_version(pytorch_training_version, request):
256-
if Version(pytorch_training_version) >= Version("2.0"):
256+
if Version(pytorch_training_version) >= Version("2.3"):
257+
return "py311"
258+
elif Version(pytorch_training_version) >= Version("2.0"):
257259
return "py310"
258260
elif Version(pytorch_training_version) >= Version("1.13"):
259261
return "py39"

tests/data/serve_resources/mlflow/pytorch/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlflow==2.10.2
1+
mlflow==2.12.1
22
astunparse==1.6.3
33
cffi==1.16.0
44
cloudpickle==2.2.1
@@ -10,7 +10,7 @@ opt-einsum==3.3.0
1010
packaging==21.3
1111
pandas==2.2.1
1212
pyyaml==6.0.1
13-
requests==2.31.0
13+
requests==2.32.2
1414
torch==2.0.1
1515
torchvision==0.15.2
1616
tqdm==4.66.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlflow==2.11.1
1+
mlflow==2.12.1
22
cloudpickle==2.2.1
33
numpy==1.26.4
44
tensorflow==2.16.1

tests/data/serve_resources/mlflow/xgboost/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlflow==2.11.1
1+
mlflow==2.12.1
22
lz4==4.3.2
33
numpy==1.24.4
44
pandas==2.0.3

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ passenv =
8181
# Can be used to specify which tests to run, e.g.: tox -- -s
8282
commands =
8383
python -c "import os; os.system('install-custom-pkgs --install-boto-wheels')"
84-
pip install 'apache-airflow==2.9.0' --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.0/constraints-3.8.txt"
84+
pip install 'apache-airflow==2.9.1' --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.1/constraints-3.8.txt"
8585
pip install 'torch==2.0.1+cpu' -f 'https://download.pytorch.org/whl/torch_stable.html'
8686
pip install 'torchvision==0.15.2+cpu' -f 'https://download.pytorch.org/whl/torch_stable.html'
8787
pip install 'dill>=0.3.8'

0 commit comments

Comments
 (0)