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

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

Merged
merged 2 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 .azuredevops/ado-ci-pipeline-ms-hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ pool:

steps:
- task: UsePythonVersion@0
displayName: "Use Python 3.9"
displayName: "Use Python 3.11"
inputs:
versionSpec: 3.9
versionSpec: 3.11

- script: |
python -m venv venv
Expand Down
4 changes: 2 additions & 2 deletions .azuredevops/ado-ci-pipeline-self-hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ steps:
displayName: "Check agent VM space"

- task: UsePythonVersion@0
displayName: "Use Python 3.9"
displayName: "Use Python 3.11"
inputs:
versionSpec: 3.9
versionSpec: 3.11

- script: |
python -m venv venv
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Python 3.9
- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11

- name: Install requirements
run: |
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mypy==1.11.2
pytest==8.3.3
mypy==1.13.0
pytest==8.3.4
pre-commit==4.0.1
pytest-cov==6.0.0
ruff==0.6.8
ruff==0.8.1
14 changes: 4 additions & 10 deletions src/sample_pytorch_gpu_project/.devcontainer/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
torch==2.4.1
torchvision==0.19.1
# use this below if you want to use torch 1.13.1 instead.
# you need --extra-index-url flag as stated in https://pytorch.org/get-started/previous-versions/#linux-and-windows-1
# torch==1.13.1+cu117
# torchvision==0.14.1+cu117
# --extra-index-url https://download.pytorch.org/whl/cu117

torch==2.5.1
torchvision==0.20.1
# the below are used by AML, can be deleted if not using AML
mlflow==2.16.2
azureml-mlflow==1.57.0.post1
mlflow==2.15.1
azureml-mlflow==1.58.0.post3
Loading