From c578ebd08ef591dc2b91878ca7613ee97d1be07a Mon Sep 17 00:00:00 2001 From: Jon Wright Date: Tue, 11 Mar 2025 16:40:37 +0100 Subject: [PATCH 1/2] Update release.yml --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4437d816..16ef3e4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,16 +43,16 @@ jobs: uses: pypa/cibuildwheel@v2.16.5 env: CIBW_BUILD_VERBOSITY: 1 - CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7" - CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* + CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8" + CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* # Do not build for pypy, muslinux and python3.12 on ppc64le - CIBW_SKIP: pp* *-musllinux_* cp312-*linux_ppc64le + CIBW_SKIP: pp* *-musllinux_* cp312-*linux_ppc64le cp313-*linux_ppc64le CIBW_ARCHS: ${{ matrix.cibw_archs }} # Use silx wheelhouse: needed for ppc64le CIBW_ENVIRONMENT_LINUX: "PIP_FIND_LINKS=https://www.silx.org/pub/wheelhouse/ PIP_TRUSTED_HOST=www.silx.org" - CIBW_BEFORE_TEST: "pip install --only-binary :all: fabio PyQt5" + CIBW_BEFORE_TEST: "pip install --only-binary :all: fabio PyQt5 pyFAI" CIBW_TEST_EXTRAS: full CIBW_TEST_COMMAND: pytest {project}/test # Skip tests for 32bits and emulated architectures, arm64 macos and on Windows From ebd7b0fe05895a4955efe4c4d1ea0755b772fe8f Mon Sep 17 00:00:00 2001 From: Jon Wright Date: Tue, 11 Mar 2025 17:13:56 +0100 Subject: [PATCH 2/2] Update release.yml ubuntu 22.04 replaces 20.04 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 16ef3e4d..d1c9158e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,13 +15,13 @@ jobs: fail-fast: false matrix: include: - - os: ubuntu-20.04 + - os: ubuntu-22.04 cibw_archs: "auto64" #- os: ubuntu-20.04 # cibw_archs: "auto32" - - os: ubuntu-20.04 + - os: ubuntu-22.04 cibw_archs: "aarch64" - - os: ubuntu-20.04 + - os: ubuntu-22.04 cibw_archs: "ppc64le" - os: windows-2019 cibw_archs: "auto64"