@@ -10,10 +10,10 @@ jobs:
10
10
steps :
11
11
- name : Checkout source code
12
12
uses : actions/checkout@v3
13
- - name : Set up Python 3.10
13
+ - name : Set up Python 3.11
14
14
uses : actions/setup-python@v4
15
15
with :
16
- python-version : " 3.10 "
16
+ python-version : " 3.11 "
17
17
- name : Install dependencies
18
18
run : python -m pip install tox
19
19
- name : Run tox
23
23
runs-on : ubuntu-latest
24
24
strategy :
25
25
matrix :
26
- python : ["3.7", "3.8", "3.9", "3.10"]
26
+ python : ["3.7", "3.8", "3.9", "3.10", "3.11" ]
27
27
steps :
28
28
- name : Checkout source code
29
29
uses : actions/checkout@v3
@@ -48,10 +48,10 @@ jobs:
48
48
# We need history for release notes
49
49
with :
50
50
fetch-depth : 0
51
- - name : Set up Python 3.10
51
+ - name : Set up Python 3.11
52
52
uses : actions/setup-python@v4
53
53
with :
54
- python-version : " 3.10 "
54
+ python-version : " 3.11 "
55
55
- name : Install dependencies
56
56
run : python -m pip install tox
57
57
- name : Build docs (via tox)
@@ -73,10 +73,10 @@ jobs:
73
73
# We need history to build the package
74
74
with :
75
75
fetch-depth : 0
76
- - name : Set up Python 3.10
76
+ - name : Set up Python 3.11
77
77
uses : actions/setup-python@v4
78
78
with :
79
- python-version : " 3.10 "
79
+ python-version : " 3.11 "
80
80
- name : Install dependencies
81
81
run : python -m pip install build
82
82
- name : Build a binary wheel and a source tarball
0 commit comments