1
1
name : CI
2
2
3
- on : [push, pull_request]
3
+ on : [push, pull_request, workflow_dispatch ]
4
4
5
5
jobs :
6
6
Windows :
9
9
strategy :
10
10
fail-fast : false
11
11
matrix :
12
- python : ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
12
+ python : ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
13
13
14
14
steps :
15
15
- name : Checkout
16
16
uses : actions/checkout@v4
17
17
- name : Setup python
18
- uses : actions/setup-python@v4
18
+ uses : actions/setup-python@v5
19
19
with :
20
20
python-version : ${{ matrix.python }}
21
21
allow-prereleases : true
35
35
strategy :
36
36
fail-fast : false
37
37
matrix :
38
- python : ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12-dev ']
38
+ python : ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13 ']
39
39
check_formatting : ['0']
40
40
extra_name : ['']
41
41
include :
@@ -46,14 +46,14 @@ jobs:
46
46
- name : Checkout
47
47
uses : actions/checkout@v4
48
48
- name : Setup python
49
- uses : actions/setup-python@v4
49
+ uses : actions/setup-python@v5
50
50
if : " !endsWith(matrix.python, '-dev')"
51
51
with :
52
52
python-version : ${{ matrix.python }}
53
53
cache : pip
54
54
cache-dependency-path : test-requirements.txt
55
55
- name : Setup python (dev)
56
- uses : deadsnakes/action@v3.0.1
56
+ uses : deadsnakes/action@v3.2.0
57
57
if : endsWith(matrix.python, '-dev')
58
58
with :
59
59
python-version : ' ${{ matrix.python }}'
@@ -71,12 +71,12 @@ jobs:
71
71
strategy :
72
72
fail-fast : false
73
73
matrix :
74
- python : ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
74
+ python : ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
75
75
steps :
76
76
- name : Checkout
77
77
uses : actions/checkout@v4
78
78
- name : Setup python
79
- uses : actions/setup-python@v4
79
+ uses : actions/setup-python@v5
80
80
with :
81
81
python-version : ${{ matrix.python }}
82
82
allow-prereleases : true
0 commit comments