Skip to content

Commit ed5679a

Browse files
Remove 3.6 and pypy-3.6 builds, add 3.10 and pypy-3.8
1 parent 1fb7a76 commit ed5679a

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/tests.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,11 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest, macos-latest, windows-latest]
25-
python: ['3.6', '3.7', '3.8', '3.9', 'pypy3']
25+
python: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.8']
2626
exclude:
2727
# pypy3 currently fails to run on Windows
2828
- os: windows-latest
29-
python: pypy3
30-
# the loop fails to close in the Mac version of 3.9
31-
- os: macos-latest
32-
python: '3.9'
29+
python: pypy-3.8
3330
fail-fast: false
3431
runs-on: ${{ matrix.os }}
3532
steps:

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tox]
2-
envlist=flake8,py36,py37,py38,py39,pypy3,docs
2+
envlist=flake8,py37,py38,py39,py310,pypy3,docs
33
skip_missing_interpreters=True
44

55
[gh-actions]
66
python =
7-
3.6: py36
87
3.7: py37
98
3.8: py38
109
3.9: py39
11-
pypy3: pypy3
10+
3.10: py310
11+
pypy-3: pypy3
1212

1313
[testenv]
1414
commands=

0 commit comments

Comments
 (0)