Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jonwright patch 1 #448

Merged
merged 3 commits into from
Mar 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update release.yml
jonwright authored Mar 11, 2025
commit c578ebd08ef591dc2b91878ca7613ee97d1be07a
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -43,16 +43,16 @@ jobs:
uses: pypa/[email protected]
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
Loading