Skip to content

Commit

Permalink
Add testing for pypy3.8 and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
krisfremen committed Jun 23, 2022
1 parent dc6428f commit 767dd71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["pypy-3.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["pypy-3.7", "pypy-3.8", "pypy-3.9", "3.6", "3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
# pypy3 randomly fails on Windows builds
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[tox]
minversion = 3.18.0
envlist = py{py3,36,37,38,39,310}
envlist = py{py37,py38,py39,36,37,38,39,310}
skip_missing_interpreters = true

[gh-actions]
python =
pypy-3.7: pypy3
pypy-3.7: pypy37
pypy-3.8: pypy38
pypy-3.9: pypy39
3.6: py36
3.7: py37
3.8: py38
Expand Down

0 comments on commit 767dd71

Please sign in to comment.