Skip to content

Commit

Permalink
Add CI for PyPy3.9 and PyPy3.10 (#316)
Browse files Browse the repository at this point in the history
* Use latest PyPy versions
* Use setup-python@v5
  • Loading branch information
elliotwutingfeng authored Feb 27, 2024
1 parent 931c001 commit 4a4e0ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
{python-version: "3.11", toxenv: "py311"},
{python-version: "3.12", toxenv: "py312"},
{python-version: "pypy3.8", toxenv: "pypy38"},
{python-version: "pypy3.9", toxenv: "pypy39"},
{python-version: "pypy3.10", toxenv: "pypy310"},
]
include:
- os: ubuntu-latest
Expand All @@ -27,7 +29,7 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.language.python-version }}
- name: Install Python requirements
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312,py38},codestyle,lint,typecheck
envlist = py{38,39,310,311,312,py38,py39,py310},codestyle,lint,typecheck

[testenv]
commands = pytest {posargs}
Expand Down

0 comments on commit 4a4e0ec

Please sign in to comment.