From 366566f188c6c390b8a84a490cae64e9080f5fd2 Mon Sep 17 00:00:00 2001 From: Adrian Price-Whelan Date: Mon, 26 Aug 2024 13:54:36 -0400 Subject: [PATCH] oops too future manylinux - also wtf why aren't tests skipping [skip tests] --- .github/workflows/tests.yml | 3 ++- .github/workflows/wheels.yml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 480da336..cff1a25b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,8 @@ jobs: tests: name: Python ${{ matrix.python-version }} on ${{ matrix.os }} with numpy ${{ matrix.numpy-version }}, no gsl ${{ matrix.gala-nogsl }}, deps ${{ matrix.pip-test-deps }} runs-on: ${{ matrix.os }} - if: ${{ github.event.pull_request.draft == false && !contains(github.event.pull_request.labels.*.name, 'docs only') && !contains(github.event.head_commit.message, '[skip tests]')}} + # if: ${{ github.event.pull_request.draft == false && !contains(github.event.pull_request.labels.*.name, 'docs only') && !contains(github.event.head_commit.message, '[skip tests]')}} + if: ${{ ! contains(github.event.head_commit.message, '[skip tests]')}} strategy: fail-fast: true matrix: diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 94e5643a..64a3c700 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -43,8 +43,8 @@ jobs: CIBW_ARCHS_LINUX: "x86_64 aarch64" CIBW_ARCHS_MACOS: "x86_64 arm64" CIBW_BUILD: ${{ matrix.python[1] }} - CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 - CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28 + CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24 + CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_24 CIBW_SKIP: "*-win32 *musllinux* pp* *i686" CIBW_BEFORE_ALL_LINUX: apt-get install gsl-bin libgsl0-dev CIBW_BEFORE_ALL_MACOS: brew install gsl pipx