From 0c35bfe9ecf56d04e248251abb57c324611e6404 Mon Sep 17 00:00:00 2001 From: geruh Date: Tue, 27 Jan 2026 21:49:02 -0800 Subject: [PATCH] chore: Remove stale CIBW_TEST_SKIP for PyPy --- .github/workflows/pypi-build-artifacts.yml | 3 --- .github/workflows/svn-build-artifacts.yml | 3 --- 2 files changed, 6 deletions(-) diff --git a/.github/workflows/pypi-build-artifacts.yml b/.github/workflows/pypi-build-artifacts.yml index 088ae09f9e..dfd089b38e 100644 --- a/.github/workflows/pypi-build-artifacts.yml +++ b/.github/workflows/pypi-build-artifacts.yml @@ -72,9 +72,6 @@ jobs: CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10,<3.14" CIBW_BEFORE_TEST: "uv sync --directory {project} --only-group dev --no-install-project" CIBW_TEST_COMMAND: "uv run --directory {project} pytest tests/avro/test_decoder.py" - # Ignore tests for pypy since not all dependencies are compiled for it - # and would require a local rust build chain - CIBW_TEST_SKIP: "pp*" # Skip free-threaded (PEP 703) builds until we evaluate decoder_fast support CIBW_SKIP: "cp3*t-*" diff --git a/.github/workflows/svn-build-artifacts.yml b/.github/workflows/svn-build-artifacts.yml index 56d8f1af6b..b2e8052356 100644 --- a/.github/workflows/svn-build-artifacts.yml +++ b/.github/workflows/svn-build-artifacts.yml @@ -67,9 +67,6 @@ jobs: CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10,<3.14" CIBW_BEFORE_TEST: "uv sync --directory {project} --only-group dev --no-install-project" CIBW_TEST_COMMAND: "uv run --directory {project} pytest tests/avro/test_decoder.py" - # Ignore tests for pypy since not all dependencies are compiled for it - # and would require a local rust build chain - CIBW_TEST_SKIP: "pp*" # Skip free-threaded (PEP 703) builds until we evaluate decoder_fast support CIBW_SKIP: "cp3*t-*"