Skip to content

Commit 40fe41d

Browse files
build(deps): bump the pip-minor-patch-updates group across 2 directories with 7 updates + update base python version for CI to 3.11 (#65)
* build(deps): bump the pip-minor-patch-updates group across 2 directories with 7 updates Bumps the pip-minor-patch-updates group with 3 updates in the / directory: [mypy](https://github.com/python/mypy), [pytest](https://github.com/pytest-dev/pytest) and [ruff](https://github.com/astral-sh/ruff). Bumps the pip-minor-patch-updates group with 4 updates in the /src/sample_pytorch_gpu_project/.devcontainer directory: [torch](https://github.com/pytorch/pytorch), [torchvision](https://github.com/pytorch/vision), [mlflow](https://github.com/mlflow/mlflow) and [azureml-mlflow](https://github.com/Azure/MachineLearningNotebooks). Updates `mypy` from 1.11.2 to 1.13.0 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](python/mypy@v1.11.2...v1.13.0) Updates `pytest` from 8.3.3 to 8.3.4 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest@8.3.3...8.3.4) Updates `ruff` from 0.6.8 to 0.8.1 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.6.8...0.8.1) Updates `torch` from 2.4.1 to 2.5.1 - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](pytorch/pytorch@v2.4.1...v2.5.1) Updates `torchvision` from 0.19.1 to 0.20.1 - [Release notes](https://github.com/pytorch/vision/releases) - [Commits](pytorch/vision@v0.19.1...v0.20.1) Updates `mlflow` from 2.16.2 to 2.18.0 - [Release notes](https://github.com/mlflow/mlflow/releases) - [Changelog](https://github.com/mlflow/mlflow/blob/master/CHANGELOG.md) - [Commits](mlflow/mlflow@v2.16.2...v2.18.0) Updates `azureml-mlflow` from 1.57.0.post1 to 1.58.0.post3 - [Release notes](https://github.com/Azure/MachineLearningNotebooks/releases) - [Commits](https://github.com/Azure/MachineLearningNotebooks/commits) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip-minor-patch-updates - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-patch dependency-group: pip-minor-patch-updates - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip-minor-patch-updates - dependency-name: torch dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pip-minor-patch-updates - dependency-name: torchvision dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pip-minor-patch-updates - dependency-name: mlflow dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pip-minor-patch-updates - dependency-name: azureml-mlflow dependency-type: direct:production update-type: version-update:semver-minor dependency-group: pip-minor-patch-updates ... Signed-off-by: dependabot[bot] <support@github.com> * downgrade mlflow version to address conflict. update base tool env to py3.11 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kosuke Fujimoto <fujikosu@gmail.com>
1 parent 6adb6b9 commit 40fe41d

File tree

5 files changed

+13
-19
lines changed

5 files changed

+13
-19
lines changed

.azuredevops/ado-ci-pipeline-ms-hosted.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ pool:
1919

2020
steps:
2121
- task: UsePythonVersion@0
22-
displayName: "Use Python 3.9"
22+
displayName: "Use Python 3.11"
2323
inputs:
24-
versionSpec: 3.9
24+
versionSpec: 3.11
2525

2626
- script: |
2727
python -m venv venv

.azuredevops/ado-ci-pipeline-self-hosted.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ steps:
3131
displayName: "Check agent VM space"
3232
3333
- task: UsePythonVersion@0
34-
displayName: "Use Python 3.9"
34+
displayName: "Use Python 3.11"
3535
inputs:
36-
versionSpec: 3.9
36+
versionSpec: 3.11
3737

3838
- script: |
3939
python -m venv venv

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
- name: Checkout code
2222
uses: actions/checkout@v4
2323

24-
- name: Setup Python 3.9
24+
- name: Setup Python 3.11
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: 3.9
27+
python-version: 3.11
2828

2929
- name: Install requirements
3030
run: |

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mypy==1.11.2
2-
pytest==8.3.3
1+
mypy==1.13.0
2+
pytest==8.3.4
33
pre-commit==4.0.1
44
pytest-cov==6.0.0
5-
ruff==0.6.8
5+
ruff==0.8.1
Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
torch==2.4.1
2-
torchvision==0.19.1
3-
# use this below if you want to use torch 1.13.1 instead.
4-
# you need --extra-index-url flag as stated in https://pytorch.org/get-started/previous-versions/#linux-and-windows-1
5-
# torch==1.13.1+cu117
6-
# torchvision==0.14.1+cu117
7-
# --extra-index-url https://download.pytorch.org/whl/cu117
8-
1+
torch==2.5.1
2+
torchvision==0.20.1
93
# the below are used by AML, can be deleted if not using AML
10-
mlflow==2.16.2
11-
azureml-mlflow==1.57.0.post1
4+
mlflow==2.15.1
5+
azureml-mlflow==1.58.0.post3

0 commit comments

Comments
 (0)