From 09035e819c2a194961fef16085f811559943fd4b Mon Sep 17 00:00:00 2001 From: duyue Date: Mon, 15 Jun 2026 15:16:10 +0800 Subject: [PATCH] cibuildwheel enable pypy pypy-eol graalpy --- .github/workflows/build.yml | 5 ----- pyproject.toml | 1 + xxhash/version.py | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c569261..0154154 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,11 +51,6 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - - name: Enable PyPy - shell: bash - run: | - echo "CIBW_ENABLE=pypy" >> "$GITHUB_ENV" - - name: Build wheels uses: pypa/cibuildwheel@v3.4.1 env: diff --git a/pyproject.toml b/pyproject.toml index c31d3bd..558cead 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,7 @@ requires = ["setuptools>=45"] build-backend = "setuptools.build_meta" [tool.cibuildwheel] +enable = ["pypy", "pypy-eol", "graalpy"] build-frontend = "build[uv]" [[tool.cibuildwheel.overrides]] diff --git a/xxhash/version.py b/xxhash/version.py index d3a5473..17952b8 100644 --- a/xxhash/version.py +++ b/xxhash/version.py @@ -1,3 +1,3 @@ -VERSION = "3.8.0.dev8" +VERSION = "3.8.0.dev9" #: Deprecated, will be removed in the next major release VERSION_TUPLE = (3, 8, 0)