File tree 4 files changed +15
-31
lines changed
4 files changed +15
-31
lines changed Original file line number Diff line number Diff line change 30
30
- name : Set up Python ${{ matrix.python-version }}
31
31
uses : actions/setup-python@v4
32
32
with :
33
- python-version : ' 3.10 '
33
+ python-version : ' 3.11 '
34
34
35
35
- name : Cache pip
36
36
uses : actions/cache@v3
39
39
key : ${{ runner.os }}-python-${{ matrix.python-version }}-codeql-${{ hashFiles('requirements*.txt') }}
40
40
restore-keys : |
41
41
${{ runner.os }}-python-${{ matrix.python-version }}-codeql-${{ hashFiles('requirements*.txt') }}
42
- ${{ runner.os }}-python-${{ matrix.python-version }}-tests-${{ hashFiles('requirements*.txt') }}
43
- ${{ runner.os }}-python-${{ matrix.python-version }}-release-${{ hashFiles('requirements*.txt') }}
44
42
${{ runner.os }}-python-${{ matrix.python-version }}-codeql-
45
- ${{ runner.os }}-python-${{ matrix.python-version }}-tests-
46
- ${{ runner.os }}-python-${{ matrix.python-version }}-release-
47
43
${{ runner.os }}-python
48
44
${{ runner.os }}-
49
45
Original file line number Diff line number Diff line change @@ -53,23 +53,19 @@ jobs:
53
53
with :
54
54
fetch-depth : 0
55
55
56
- - name : Set up Python 3.10
56
+ - name : Set up Python 3.11
57
57
uses : actions/setup-python@v4
58
58
with :
59
- python-version : ' 3.10 '
59
+ python-version : ' 3.11 '
60
60
61
61
- name : Cache pip
62
62
uses : actions/cache@v3
63
63
with :
64
64
path : ~/.cache/pip
65
- key : ${{ runner.os }}-python-3.10 -release-${{ hashFiles('requirements*.txt') }}
65
+ key : ${{ runner.os }}-python-3.11 -release-${{ hashFiles('requirements*.txt') }}
66
66
restore-keys : |
67
- ${{ runner.os }}-python-3.10-release-${{ hashFiles('requirements*.txt') }}
68
- ${{ runner.os }}-python-3.10-tests-${{ hashFiles('requirements*.txt') }}
69
- ${{ runner.os }}-python-3.10-codeql-${{ hashFiles('requirements*.txt') }}
70
- ${{ runner.os }}-python-3.10-release-
71
- ${{ runner.os }}-python-3.10-tests-
72
- ${{ runner.os }}-python-3.10-codeql-
67
+ ${{ runner.os }}-python-3.11-release-${{ hashFiles('requirements*.txt') }}
68
+ ${{ runner.os }}-python-3.11-release-
73
69
${{ runner.os }}-python
74
70
${{ runner.os }}-
75
71
Original file line number Diff line number Diff line change @@ -51,23 +51,19 @@ jobs:
51
51
with :
52
52
fetch-depth : 0
53
53
54
- - name : Set up Python 3.10
54
+ - name : Set up Python 3.11
55
55
uses : actions/setup-python@v4
56
56
with :
57
- python-version : ' 3.10 '
57
+ python-version : ' 3.11 '
58
58
59
59
- name : Cache pip
60
60
uses : actions/cache@v3
61
61
with :
62
62
path : ~/.cache/pip
63
- key : ${{ runner.os }}-python-3.10 -release-${{ hashFiles('requirements*.txt') }}
63
+ key : ${{ runner.os }}-python-3.11 -release-${{ hashFiles('requirements*.txt') }}
64
64
restore-keys : |
65
- ${{ runner.os }}-python-3.10-release-${{ hashFiles('requirements*.txt') }}
66
- ${{ runner.os }}-python-3.10-tests-${{ hashFiles('requirements*.txt') }}
67
- ${{ runner.os }}-python-3.10-codeql-${{ hashFiles('requirements*.txt') }}
68
- ${{ runner.os }}-python-3.10-release-
69
- ${{ runner.os }}-python-3.10-tests-
70
- ${{ runner.os }}-python-3.10-codeql-
65
+ ${{ runner.os }}-python-3.11-release-${{ hashFiles('requirements*.txt') }}
66
+ ${{ runner.os }}-python-3.11-release-
71
67
${{ runner.os }}-python
72
68
${{ runner.os }}-
73
69
Original file line number Diff line number Diff line change @@ -20,21 +20,21 @@ jobs:
20
20
strategy :
21
21
fail-fast : false
22
22
matrix :
23
- python-version : ['3.7', '3.11', pypy-3.7, pypy-3.9]
23
+ python-version : ['3.7', pypy-3.7, pypy-3.9]
24
24
os : [ubuntu-latest]
25
25
# run only limited set of tests because it takes too long
26
26
mark : [important]
27
27
include :
28
28
- os : macos-latest
29
29
mark : important
30
- python-version : ' 3.10 '
30
+ python-version : ' 3.11 '
31
31
- os : windows-latest
32
32
mark : important
33
- python-version : ' 3.10 '
33
+ python-version : ' 3.11 '
34
34
# run all the tests only on latest python version
35
35
- os : ubuntu-latest
36
36
mark : all
37
- python-version : ' 3.10 '
37
+ python-version : ' 3.11 '
38
38
39
39
steps :
40
40
- name : Checkout code
54
54
key : ${{ runner.os }}-python-${{ matrix.python-version }}-tests-${{ hashFiles('requirements*.txt') }}
55
55
restore-keys : |
56
56
${{ runner.os }}-python-${{ matrix.python-version }}-tests-${{ hashFiles('requirements*.txt') }}
57
- ${{ runner.os }}-python-${{ matrix.python-version }}-codeql-${{ hashFiles('requirements*.txt') }}
58
- ${{ runner.os }}-python-${{ matrix.python-version }}-release-${{ hashFiles('requirements*.txt') }}
59
57
${{ runner.os }}-python-${{ matrix.python-version }}-tests-
60
- ${{ runner.os }}-python-${{ matrix.python-version }}-codeql-
61
- ${{ runner.os }}-python-${{ matrix.python-version }}-release-
62
58
${{ runner.os }}-python
63
59
${{ runner.os }}-
64
60
You can’t perform that action at this time.
0 commit comments