File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 16
16
#
17
17
# Available Python versions: can be found here:
18
18
# 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.
19
23
os : [ubuntu-latest]
20
24
python :
21
25
# CPython
26
30
- " 3.11"
27
31
# CPython 3.12 final is scheduled for October 2013:
28
32
# https://peps.python.org/pep-0693/
29
- - " 3.12-dev "
33
+ - " 3.12"
30
34
# PyPy
31
35
- " pypy2.7"
32
36
- " pypy3.6"
60
64
uses : actions/setup-python@v4
61
65
with :
62
66
python-version : ${{ matrix.python }}
67
+ allow-prereleases : true
63
68
- name : Install setuptools
64
69
run : python -m pip install setuptools
65
70
- name : Display the Python version
You can’t perform that action at this time.
0 commit comments