Skip to content

Commit

Permalink
update python version in ci from 3.10 to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaenzig committed Nov 26, 2024
1 parent 7a8e116 commit 27e03fa
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: Setting up PDM
uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
with:
python-version: "3.10"
python-version: "3.11"
architecture: x64
- name: Setting up nox
uses: wntrblm/nox@5656fcedc31a1ea37d016e4d94d00185330cc528 # 2024.04.15
with:
python-versions: "3.10"
python-versions: "3.11"
- name: Configure Git Credentials
run: |
git config user.email "[email protected]"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
- name: Setting up PDM
uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
with:
python-version: "3.10"
python-version: "3.11"
architecture: x64
- name: Setting up nox
uses: wntrblm/nox@5656fcedc31a1ea37d016e4d94d00185330cc528 # 2024.04.15
with:
python-versions: "3.10"
python-versions: "3.11"
- name: Performing lint checks
run: nox -s lint
- name: Performing static type checks
Expand All @@ -30,7 +30,7 @@ jobs:
os:
- ubuntu-latest
python-version:
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
- name: Install OS dependencies
Expand Down Expand Up @@ -62,12 +62,12 @@ jobs:
- name: Setting up PDM
uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
with:
python-version: "3.10"
python-version: "3.11"
architecture: x64
- name: Setting up nox
uses: wntrblm/nox@5656fcedc31a1ea37d016e4d94d00185330cc528 # 2024.04.15
with:
python-versions: "3.10"
python-versions: "3.11"
- name: Configure Git Credentials
run: |
git config user.email "[email protected]"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
- name: Setting up PDM
uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
with:
python-version: "3.10"
python-version: "3.11"
architecture: x64
- name: Setting up nox
uses: wntrblm/nox@5656fcedc31a1ea37d016e4d94d00185330cc528 # 2024.04.15
with:
python-versions: "3.10"
python-versions: "3.11"
- name: Configure Git Credentials
run: |
git config user.email "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import nox

PYTHON_VERSIONS = ["3.10"]
PYTHON_VERSIONS = ["3.11"]
"""The python versions to test on."""

LOCATIONS = "src", "tests", "noxfile.py"
Expand Down
2 changes: 1 addition & 1 deletion pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 27e03fa

Please sign in to comment.