From 8d43cb33929714b4e480a6f00914f4acb34374d5 Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Sun, 3 Nov 2024 17:57:07 +0100 Subject: [PATCH] Update python-cibuildwheel.yml disable pypy 3.8, see https://github.com/pypa/distutils/issues/283 --- .github/workflows/python-cibuildwheel.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-cibuildwheel.yml b/.github/workflows/python-cibuildwheel.yml index 832200f9e..000a2ad43 100644 --- a/.github/workflows/python-cibuildwheel.yml +++ b/.github/workflows/python-cibuildwheel.yml @@ -111,7 +111,8 @@ jobs: uses: pypa/cibuildwheel@v2.17.0 env: # Skip CPython 3.6 and CPython 3.7 - CIBW_SKIP: ${{ env.CIBW_SKIP }} cp36-* cp37-* + # skip pypy 3.8, https://github.com/pypa/distutils/issues/283 + CIBW_SKIP: ${{ env.CIBW_SKIP }} cp36-* cp37-* pp38* # skip testing all python versions on linux arm, only test 3.12 # skip tests on pypy, currently fails for indexer tests