@@ -29,10 +29,10 @@ jobs:
29
29
runs-on : ubuntu-latest
30
30
steps :
31
31
- uses : actions/checkout@v3
32
- - name : Set up Python 3.10
33
- uses : actions/setup-python@v3
32
+ - name : Set up Python 3.11
33
+ uses : actions/setup-python@v4
34
34
with :
35
- python-version : ' 3.10 '
35
+ python-version : ' 3.11 '
36
36
# flake8 version should be same as the version in requirements/test.txt
37
37
# to avoid lint errors on CI
38
38
- name : pip install flak8
@@ -64,11 +64,11 @@ jobs:
64
64
strategy :
65
65
fail-fast : false
66
66
matrix :
67
- python-version : ["pypy-3.7 -v7.3.5 ", "3.7 ", "3.8 ", "3.9 ", "3.10 "]
67
+ python-version : ["pypy-3.10 -v7.3.12 ", "3.8 ", "3.9 ", "3.10 ", "3.11 "]
68
68
steps :
69
69
- uses : actions/checkout@v3
70
70
- name : Set up Python ${{ matrix.python-version }}
71
- uses : actions/setup-python@v3
71
+ uses : actions/setup-python@v4
72
72
with :
73
73
python-version : ${{ matrix.python-version }}
74
74
- name : Install dependencies
@@ -84,11 +84,11 @@ jobs:
84
84
strategy :
85
85
fail-fast : false
86
86
matrix :
87
- python-version : ["3.7 ", "3.8 ", "3.9 ", "3.10 "]
87
+ python-version : ["3.8 ", "3.9 ", "3.10 ", "3.11 "]
88
88
steps :
89
89
- uses : actions/checkout@v3
90
90
- name : Set up Python ${{ matrix.python-version }}
91
- uses : actions/setup-python@v3
91
+ uses : actions/setup-python@v4
92
92
with :
93
93
python-version : ${{ matrix.python-version }}
94
94
- name : Install dependencies
0 commit comments