Skip to content
Open
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
8 changes: 5 additions & 3 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
SPKGS: _bootstrap _prereq
# Non-Python packages to install as spkgs
TARGETS_PRE: gmp mpfr mpc ppl-ensure
CIBW_BUILD: "*${{ matrix.build }}*"
# Disable building PyPy wheels on all platforms
CIBW_SKIP: "pp*"
#
Expand Down Expand Up @@ -164,6 +165,7 @@ jobs:
SPKGS: _bootstrap _prereq
# Non-Python packages to install as spkgs
TARGETS_PRE: ppl-ensure
CIBW_BUILD: "*${{ matrix.build }}*"
# Disable building PyPy wheels on all platforms
CIBW_SKIP: "pp*"
#
Expand All @@ -172,7 +174,7 @@ jobs:
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9"
# Run before wheel build
CIBW_BEFORE_BUILD_WINDOWS: |
pip install delvewheel
pip install delvewheel && pip install --config-settings setup-args="--vsenv" cysignals
# Environment during wheel build
# PYTHONUTF8=1 is for delvewheel
CIBW_ENVIRONMENT: >-
Expand Down Expand Up @@ -263,13 +265,13 @@ jobs:
config.status
sage-local
key: >-
${{ runner.os }}-cibuildwheel-${{ matrix.arch }}-build=${{
${{ matrix.os }}-cibuildwheel-${{ matrix.arch }}-build=${{
hashFiles('build',
'configure.ac',
'm4')
}}
restore-keys: |
${{ runner.os }}-cibuildwheel-${{ matrix.arch }}
${{ matrix.os }}-cibuildwheel-${{ matrix.arch }}

- name: Unpack and prepare
id: unpack
Expand Down
Loading