File tree Expand file tree Collapse file tree 1 file changed +19
-9
lines changed Expand file tree Collapse file tree 1 file changed +19
-9
lines changed Original file line number Diff line number Diff line change @@ -14,29 +14,41 @@ jobs:
14
14
# Available OS Images:
15
15
# https://github.com/actions/runner-images/#available-images
16
16
#
17
- # Available Python versions: can be found here:
18
- # https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
19
- #
20
- # Allow pre-releases:
17
+ # Allow Python pre-releases:
21
18
# https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#allow-pre-releases
22
19
# See "allow-prereleases: true" below.
23
20
os : [ubuntu-latest]
24
21
python :
25
- # CPython
22
+ # Python versions (CPython):
23
+ # https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
26
24
- " 3.7"
27
25
- " 3.8"
28
26
- " 3.9"
29
27
- " 3.10"
30
28
- " 3.11"
31
- # CPython 3.12 final is scheduled for October 2013 :
29
+ # CPython 3.12 final is scheduled for October 2023 :
32
30
# https://peps.python.org/pep-0693/
33
31
- " 3.12"
34
- # PyPy
32
+ # Python 2.7 was removed from GHA setup-python in June 2023:
33
+ # https://github.com/actions/setup-python/issues/672
34
+
35
+ # PyPy versions:
36
+ # - https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md
37
+ # - https://downloads.python.org/pypy/
38
+ # - Only versions listed in this JSON are supported:
39
+ # https://downloads.python.org/pypy/versions.json
35
40
- " pypy2.7"
36
41
- " pypy3.6"
37
42
- " pypy3.7"
38
43
- " pypy3.8"
39
44
- " pypy3.9"
45
+
46
+ # Old PyPy versions
47
+ # See https://foss.heptapod.net/pypy/pypy/-/issues/3991
48
+ - " pypy2.7-v7.3.2"
49
+ - " pypy3.6-v7.3.2"
50
+ - " pypy3.7-v7.3.2"
51
+
40
52
include :
41
53
# Windows: test old and new Python
42
54
- os : windows-latest
53
65
python : 3.5
54
66
- os : ubuntu-20.04
55
67
python : 3.6
56
- # Python 2.7 was removed from GHA setup-python in June 2023:
57
- # https://github.com/actions/setup-python/issues/672
58
68
59
69
steps :
60
70
# https://github.com/actions/checkout
You can’t perform that action at this time.
0 commit comments