From f9cb3a5a47c212307fa1fa2d0b95113579c8ad0e Mon Sep 17 00:00:00 2001 From: Jens Vagelpohl Date: Thu, 23 May 2024 07:30:41 +0200 Subject: [PATCH] - attempt to fix aarch64 by only testing standard interpreters --- .github/workflows/tests.yml | 4 ++-- .manylinux-install.sh | 16 ++++++++-------- .meta.toml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 61fdd770..6d882da6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -629,5 +629,5 @@ jobs: with: user: __token__ password: ${{ secrets.TWINE_PASSWORD }} - skip-existing: true - packages-dir: wheelhouse/ + skip_existing: true + packages_dir: wheelhouse/ diff --git a/.manylinux-install.sh b/.manylinux-install.sh index b12ac83e..532c13d2 100755 --- a/.manylinux-install.sh +++ b/.manylinux-install.sh @@ -42,14 +42,14 @@ tox_env_map() { # Compile wheels for PYBIN in /opt/python/*/bin; do if \ - [[ "${PYBIN}" == *"cp313"* ]] || \ - [[ "${PYBIN}" == *"cp311"* ]] || \ - [[ "${PYBIN}" == *"cp312"* ]] || \ - [[ "${PYBIN}" == *"cp37"* ]] || \ - [[ "${PYBIN}" == *"cp38"* ]] || \ - [[ "${PYBIN}" == *"cp39"* ]] || \ - [[ "${PYBIN}" == *"cp310"* ]] ; then - if [[ "${PYBIN}" == *"cp313"* ]] ; then + [[ "${PYBIN}" == *"cp313/"* ]] || \ + [[ "${PYBIN}" == *"cp311/"* ]] || \ + [[ "${PYBIN}" == *"cp312/"* ]] || \ + [[ "${PYBIN}" == *"cp37/"* ]] || \ + [[ "${PYBIN}" == *"cp38/"* ]] || \ + [[ "${PYBIN}" == *"cp39/"* ]] || \ + [[ "${PYBIN}" == *"cp310/"* ]] ; then + if [[ "${PYBIN}" == *"cp313/"* ]] ; then "${PYBIN}/pip" install --pre -e /io/ "${PYBIN}/pip" wheel /io/ --pre -w wheelhouse/ else diff --git a/.meta.toml b/.meta.toml index fda161bd..8558024a 100644 --- a/.meta.toml +++ b/.meta.toml @@ -2,7 +2,7 @@ # https://github.com/zopefoundation/meta/tree/master/config/c-code [meta] template = "c-code" -commit-id = "761944d0" +commit-id = "7ec8131d" [python] with-appveyor = true