Skip to content

Commit bb78bbd

Browse files
committed
CI: use the release version of Python 3.13
Python 3.13 was finally released on October 7, 2024. GitHub Actions' `actions/setup-python` already added support for the final release version. See https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
1 parent 7ebe149 commit bb78bbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-and-publish.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030
- '3.10'
3131
- '3.11'
3232
- '3.12'
33-
- '3.13-dev'
33+
- '3.13'
3434
build_type:
3535
type: choice
3636
description: 'Choose the build type to use'
@@ -133,7 +133,7 @@ jobs:
133133
fail-fast: false
134134
matrix:
135135
os: [ 'ubuntu-20.04', 'macos-12', 'macos-14', 'windows-2022', 'pi' ]
136-
python_version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev' ]
136+
python_version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
137137
runs-on: ${{ matrix.os }}
138138
steps:
139139
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)