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
Enable testing on all Python 3 versions supported by GitHub Actions
at the moment.  While at it, fix the tox invocation for Python 3.10.
  • Loading branch information
mgorny committed May 26, 2022
1 parent 1905d19 commit 5775e3c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -18,7 +18,9 @@ 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"]

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 5775e3c

Please sign in to comment.