Skip to content

Commit a65027d

Browse files
committed
Enable GHA testing on Python 3.11 and all PyPy3 versions
1 parent 1905d19 commit a65027d

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/main.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
strategy:
1919
matrix:
2020
platform: ["ubuntu-latest", "windows-latest"]
21-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
21+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10",
22+
"3.11.0-beta - 3.11", "pypy-3.7", "pypy-3.8",
23+
"pypy-3.9"]
24+
fail-fast: false # TODO testing hack
2225

2326
steps:
2427
- uses: "actions/checkout@v3"

tox.ini

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ python =
1313
3.8: py38, typing
1414
3.9: py39
1515
3.10: py310
16+
3.11: py311
17+
pypy-3.7: pypy3
18+
pypy-3.8: pypy3
19+
pypy-3.9: pypy3
1620

1721

1822
[tox]
1923
envlist =
2024
lint
2125
typing
22-
py{36,37,38,39}-{crypto,nocrypto}
26+
py{36,37,38,39,310,311,py3}-{crypto,nocrypto}
2327
docs
2428
pypi-description
2529
coverage-report

0 commit comments

Comments
 (0)