From 4a4e0ececdf759e1170e24c20d17088f688574b5 Mon Sep 17 00:00:00 2001 From: Wu Tingfeng Date: Wed, 28 Feb 2024 00:34:17 +0800 Subject: [PATCH] Add CI for PyPy3.9 and PyPy3.10 (#316) * Use latest PyPy versions * Use setup-python@v5 --- .github/workflows/ci.yml | 4 +++- tox.ini | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acb4d300..aa25c115 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 diff --git a/tox.ini b/tox.ini index 0e4ea2e7..21251d48 100644 --- a/tox.ini +++ b/tox.ini @@ -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}