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

ci: skipping wheel building for Linux 32-bit #227

Merged
merged 2 commits into from
Jan 19, 2022
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/upload-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
# Disable explicitly python 3.10 and building PyPy wheels
CIBW_SKIP: cp310-* pp*
# Disable explicitly building PyPI wheels for specific configurations
CIBW_SKIP: cp310-* pp* cp{38,39,310}-manylinux_i686 *-musllinux_* cp310-win32
CIBW_PRERELEASE_PYTHONS: False
# Manually force a version (and avoid building local wheels)
CIBW_ENVIRONMENT: "SETUPTOOLS_SCM_PRETEND_VERSION=${{ github.event.inputs.overrideVersion }}"
Expand Down