Skip to content

Commit

Permalink
Enable GHA testing on Python 3.11 and all PyPy3 versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mgorny committed May 26, 2022
1 parent 1905d19 commit a65027d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -18,7 +18,10 @@ jobs:
strategy:
matrix:
platform: ["ubuntu-latest", "windows-latest"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10",
"3.11.0-beta - 3.11", "pypy-3.7", "pypy-3.8",
"pypy-3.9"]
fail-fast: false # TODO testing hack

steps:
- uses: "actions/checkout@v3"
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Expand Up @@ -13,13 +13,17 @@ python =
3.8: py38, typing
3.9: py39
3.10: py310
3.11: py311
pypy-3.7: pypy3
pypy-3.8: pypy3
pypy-3.9: pypy3


[tox]
envlist =
lint
typing
py{36,37,38,39}-{crypto,nocrypto}
py{36,37,38,39,310,311,py3}-{crypto,nocrypto}
docs
pypi-description
coverage-report
Expand Down

0 comments on commit a65027d

Please sign in to comment.