@@ -2,18 +2,20 @@ name: Python package
2
2
3
3
on : [push]
4
4
5
+ # https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
6
+
5
7
jobs :
6
8
test-linux :
7
9
runs-on : ubuntu-latest
8
10
strategy :
9
11
max-parallel : 3
10
12
matrix :
11
- python-version : ["3.7", "3.8", "3.9", "3.10", "3.11"]
13
+ python-version : ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
12
14
13
15
steps :
14
- - uses : actions/checkout@v1
16
+ - uses : actions/checkout@v4
15
17
- name : Set up Python ${{ matrix.python-version }}
16
- uses : actions/setup-python@v1
18
+ uses : actions/setup-python@v5
17
19
with :
18
20
python-version : ${{ matrix.python-version }}
19
21
- name : Install dependencies
@@ -30,12 +32,12 @@ jobs:
30
32
strategy :
31
33
max-parallel : 3
32
34
matrix :
33
- python-version : ["3.7", "3.8", "3.9", "3.10", "3.11"]
35
+ python-version : ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
34
36
35
37
steps :
36
- - uses : actions/checkout@v1
38
+ - uses : actions/checkout@v4
37
39
- name : Set up Python ${{ matrix.python-version }}
38
- uses : actions/setup-python@v1
40
+ uses : actions/setup-python@v5
39
41
with :
40
42
python-version : ${{ matrix.python-version }}
41
43
- name : Install dependencies
@@ -52,12 +54,12 @@ jobs:
52
54
strategy :
53
55
max-parallel : 3
54
56
matrix :
55
- python-version : ["3.7", "3.8", "3.9", "3.10", "3.11"]
57
+ python-version : ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
56
58
57
59
steps :
58
- - uses : actions/checkout@v1
60
+ - uses : actions/checkout@v4
59
61
- name : Set up Python ${{ matrix.python-version }}
60
- uses : actions/setup-python@v1
62
+ uses : actions/setup-python@v5
61
63
with :
62
64
python-version : ${{ matrix.python-version }}
63
65
- name : Install dependencies
0 commit comments