From 3e7184c52cf244b04ad218d851df3d9ddfae5b6f Mon Sep 17 00:00:00 2001 From: Jason Madden Date: Tue, 11 Jun 2024 09:54:09 -0500 Subject: [PATCH] Can't build on non-gil. --- .github/workflows/tests.yml | 2 -- scripts/releases/make-manylinux | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0955289..d8b7d4d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -107,8 +107,6 @@ jobs: pip install -U setuptools wheel twine build pip install -U 'cython>=3.0.10' pip install -U coverage - pip install -U cffi - pip install -U persistent zope.interface zope.proxy - name: Install perfmetrics (non-Mac) if: ${{ ! startsWith(runner.os, 'Mac') }} run: | diff --git a/scripts/releases/make-manylinux b/scripts/releases/make-manylinux index 2cd8175..40e7138 100755 --- a/scripts/releases/make-manylinux +++ b/scripts/releases/make-manylinux @@ -22,6 +22,8 @@ if [ -d /io -a -d /opt/python ]; then cd /io rm -rf wheelhouse mkdir wheelhouse + # non-gil won't build, seems like a cython issue. + rm -f /opt/python/cp313-cp313t for variant in `ls -d /opt/python/cp{38,39,310,311,312,313}*`; do echo "Building $variant" mkdir /tmp/build