Skip to content

Commit

Permalink
Run actions and tests on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Oct 7, 2023
1 parent 78ad2c7 commit 450eb23
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: "3.11"
python-version: "3.12"
- name: Install mpm
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/debug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: "3.11"
python-version: "3.12"
- run: |
python -m pip install --upgrade click click-extra
- shell: python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: "3.11"
python-version: "3.12"
- name: Install mpm
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@ jobs:
# to speed up the tests.
python_list = {
"3.8",
"3.11",
"3.12-dev",
"3.12",
# Work on Python 3.13 has not started yet:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
# "3.13-dev",
}
# Safety check to ensure there is no overlap between the 2 sets.
assert not os_list.intersection(python_list)
Expand Down

0 comments on commit 450eb23

Please sign in to comment.