Skip to content

Commit

Permalink
GHA uses "3.12" for Python 3.12 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner authored Jul 21, 2023
1 parent 8d591d3 commit a1d8346
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ jobs:
#
# Available Python versions: can be found here:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
#
# Allow pre-releases:
# https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#allow-pre-releases
# See "allow-prereleases: true" below.
os: [ubuntu-latest]
python:
# CPython
Expand All @@ -26,7 +30,7 @@ jobs:
- "3.11"
# CPython 3.12 final is scheduled for October 2013:
# https://peps.python.org/pep-0693/
- "3.12-dev"
- "3.12"
# PyPy
- "pypy2.7"
- "pypy3.6"
Expand Down Expand Up @@ -60,6 +64,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- name: Install setuptools
run: python -m pip install setuptools
- name: Display the Python version
Expand Down

0 comments on commit a1d8346

Please sign in to comment.