diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 5164e36b..60112b1a 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -21,7 +21,6 @@ jobs: - "3.10" - "3.11" - "3.12" - - "pypy-3.8" - "pypy-3.9" - "pypy-3.10" os: @@ -29,8 +28,6 @@ jobs: - "windows-latest" - "macos-latest" include: - - py: "pypy-3.8" - toxenv: "pypy38" - py: "pypy-3.9" toxenv: "pypy39" - py: "pypy-3.10" @@ -38,10 +35,6 @@ jobs: exclude: # Don't run all PyPy versions except latest on # Windows/macOS. They are expensive to run. - - os: "windows-latest" - py: "pypy-3.8" - - os: "macos-latest" - py: "pypy-3.8" - os: "windows-latest" py: "pypy-3.9" - os: "macos-latest" diff --git a/tox.ini b/tox.ini index 90655e83..d27c853e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = lint, - py38,py39,py310,py311,py312,pypy38,pypy39,pypy310, + py38,py39,py310,py311,py312,pypy39,pypy310, coverage, docs, isolated_build = True @@ -10,7 +10,6 @@ isolated_build = True commands = python --version python -m pytest \ - pypy38: --no-cov \ pypy39: --no-cov \ pypy310: --no-cov \ {posargs:}