Skip to content

Commit b345ddf

Browse files
authored
Merge pull request #145 from altendky/add_3.10
Add 3.10 to CI
2 parents 61a27c2 + e678180 commit b345ddf

File tree

2 files changed

+22
-15
lines changed

2 files changed

+22
-15
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,16 @@ jobs:
2929
runs-on: ubuntu-latest
3030
python_platform: linux
3131
container:
32-
2.7: docker://python:2.7-buster
33-
3.5: docker://python:3.5-buster
34-
3.6: docker://python:3.6-buster
35-
3.7: docker://python:3.7-buster
36-
3.8: docker://python:3.8-buster
37-
3.9: docker://python:3.9-buster
38-
pypy2.7: docker://pypy:2.7-buster
39-
pypy3.7: docker://pypy:3.7-buster
40-
pypy3.8: docker://pypy:3.8-buster
32+
"2.7": docker://python:2.7-buster
33+
"3.5": docker://python:3.5-buster
34+
"3.6": docker://python:3.6-buster
35+
"3.7": docker://python:3.7-buster
36+
"3.8": docker://python:3.8-buster
37+
"3.9": docker://python:3.9-buster
38+
"3.10": docker://python:3.10-buster
39+
"pypy2.7": docker://pypy:2.7-buster
40+
"pypy3.7": docker://pypy:3.7-buster
41+
"pypy3.8": docker://pypy:3.8-buster
4142
- name: 🪟
4243
runs-on: windows-latest
4344
python_platform: win32
@@ -81,6 +82,12 @@ jobs:
8182
docker: 3.9
8283
implementation: cpython
8384
major: 3
85+
- name: CPython 3.10
86+
tox: py310
87+
action: "3.10"
88+
docker: "3.10"
89+
implementation: cpython
90+
major: 3
8491
- name: PyPy 2.7
8592
tox: pypy27
8693
action: pypy-2.7
@@ -185,8 +192,8 @@ jobs:
185192
strategy:
186193
matrix:
187194
python:
188-
- short: 38
189-
dotted: 3.8
195+
- short: 39
196+
dotted: 3.9
190197
steps:
191198
- uses: actions/checkout@v2
192199
- name: Set up Python ${{ matrix.python.dotted }}

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
envlist=
3-
py{27,py27,35,36,37,38,39,py37,py38}-defaultreactor
4-
py{35,36,37,38,39,py37,py38}-asyncioreactor
5-
py{35,36,37,38,39}-pyqt5reactor
6-
py{35,36,37,38,39}-pyside2reactor
3+
py{27,py27,35,36,37,38,39,310,py37,py38}-defaultreactor
4+
py{35,36,37,38,39,310,py37,py38}-asyncioreactor
5+
py{35,36,37,38,39,310}-pyqt5reactor
6+
py{35,36,37,38,39,310}-pyside2reactor
77
linting
88

99
[testenv]

0 commit comments

Comments
 (0)