File tree Expand file tree Collapse file tree 7 files changed +12
-10
lines changed
data/serve_resources/mlflow Expand file tree Collapse file tree 7 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 55
55
- name : Run Codestyle & Doc Tests
56
56
uses : aws-actions/aws-codebuild-run-build@v1
57
57
with :
58
- project-name : sagemaker-python-sdk -ci-codestyle-doc-tests
58
+ project-name : ${{ github.event.repository.name }} -ci-codestyle-doc-tests
59
59
source-version-override : ' refs/pull/${{ github.event.pull_request.number }}/head^{${{ github.event.pull_request.head.sha }}}'
60
60
unit-tests :
61
61
runs-on : ubuntu-latest
74
74
- name : Run Unit Tests
75
75
uses : aws-actions/aws-codebuild-run-build@v1
76
76
with :
77
- project-name : sagemaker-python-sdk -ci-unit-tests
77
+ project-name : ${{ github.event.repository.name }} -ci-unit-tests
78
78
source-version-override : ' refs/pull/${{ github.event.pull_request.number }}/head^{${{ github.event.pull_request.head.sha }}}'
79
79
env-vars-for-codebuild : |
80
80
PY_VERSION
93
93
- name : Run Integ Tests
94
94
uses : aws-actions/aws-codebuild-run-build@v1
95
95
with :
96
- project-name : sagemaker-python-sdk -ci-integ-tests
96
+ project-name : ${{ github.event.repository.name }} -ci-integ-tests
97
97
source-version-override : ' refs/pull/${{ github.event.pull_request.number }}/head^{${{ github.event.pull_request.head.sha }}}'
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ awslogs==0.14.0
12
12
black==24.3.0
13
13
stopit==1.1.2
14
14
# Update tox.ini to have correct version of airflow constraints file
15
- apache-airflow==2.9.0
15
+ apache-airflow==2.9.1
16
16
apache-airflow-providers-amazon==7.2.1
17
17
attrs>=23.1.0,<24
18
18
fabric==2.6.0
Original file line number Diff line number Diff line change @@ -253,7 +253,9 @@ def mxnet_eia_latest_py_version():
253
253
254
254
@pytest .fixture (scope = "module" , params = ["py2" , "py3" ])
255
255
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" ):
257
259
return "py310"
258
260
elif Version (pytorch_training_version ) >= Version ("1.13" ):
259
261
return "py39"
Original file line number Diff line number Diff line change 1
- mlflow == 2.10.2
1
+ mlflow == 2.12.1
2
2
astunparse == 1.6.3
3
3
cffi == 1.16.0
4
4
cloudpickle == 2.2.1
@@ -10,7 +10,7 @@ opt-einsum==3.3.0
10
10
packaging == 21.3
11
11
pandas == 2.2.1
12
12
pyyaml == 6.0.1
13
- requests == 2.31.0
13
+ requests == 2.32.2
14
14
torch == 2.0.1
15
15
torchvision == 0.15.2
16
16
tqdm == 4.66.3
Original file line number Diff line number Diff line change 1
- mlflow == 2.11 .1
1
+ mlflow == 2.12 .1
2
2
cloudpickle == 2.2.1
3
3
numpy == 1.26.4
4
4
tensorflow == 2.16.1
Original file line number Diff line number Diff line change 1
- mlflow == 2.11 .1
1
+ mlflow == 2.12 .1
2
2
lz4 == 4.3.2
3
3
numpy == 1.24.4
4
4
pandas == 2.0.3
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ passenv =
81
81
# Can be used to specify which tests to run, e.g.: tox -- -s
82
82
commands =
83
83
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"
85
85
pip install ' torch==2.0.1+cpu' -f ' https://download.pytorch.org/whl/torch_stable.html'
86
86
pip install ' torchvision==0.15.2+cpu' -f ' https://download.pytorch.org/whl/torch_stable.html'
87
87
pip install ' dill>=0.3.8'
You can’t perform that action at this time.
0 commit comments