Skip to content

Commit a1d8346

Browse files
authored
GHA uses "3.12" for Python 3.12 (#64)
1 parent 8d591d3 commit a1d8346

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
#
1717
# Available Python versions: can be found here:
1818
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
19+
#
20+
# Allow pre-releases:
21+
# https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#allow-pre-releases
22+
# See "allow-prereleases: true" below.
1923
os: [ubuntu-latest]
2024
python:
2125
# CPython
@@ -26,7 +30,7 @@ jobs:
2630
- "3.11"
2731
# CPython 3.12 final is scheduled for October 2013:
2832
# https://peps.python.org/pep-0693/
29-
- "3.12-dev"
33+
- "3.12"
3034
# PyPy
3135
- "pypy2.7"
3236
- "pypy3.6"
@@ -60,6 +64,7 @@ jobs:
6064
uses: actions/setup-python@v4
6165
with:
6266
python-version: ${{ matrix.python }}
67+
allow-prereleases: true
6368
- name: Install setuptools
6469
run: python -m pip install setuptools
6570
- name: Display the Python version

0 commit comments

Comments
 (0)