commit: 6caf400a20ec2f967cbea7dfe34e4e9ac5973a34
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 29 17:51:01 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 29 17:51:01 2025 +0000
URL: https://gitweb.gentoo.org/proj/pycargoebuild.git/commit/?id=6caf400a
Disable pypy testing
PyPy is effectively dead, and mypy broke PyPy support, breaking our
tests.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.github/workflows/ci.yaml | 2 +-
tox.ini | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 655f681..65a0e94 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -4,7 +4,7 @@ jobs:
ci:
strategy:
matrix:
- python-version: ["3.10", "3.11", "3.12", "3.13", "3.14-dev",
"pypy-3.10", "pypy-3.11"]
+ python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
suite: ["py", "integration"]
fail-fast: false
runs-on: ubuntu-latest
diff --git a/tox.ini b/tox.ini
index 154a923..de0ad7f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = qa,py310,py311,py312,py313,py314,pypy310,pypy311
+envlist = qa,py310,py311,py312,py313,py314
isolated_build = True
[testenv]