Skip to content

Commit e6fff45

Browse files
ratalclaude
andcommitted
fix release: add setuptools to CIBW_BEFORE_BUILD for --no-build-isolation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 376fa17 commit e6fff45

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-*"
2424
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
2525
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
26-
CIBW_BEFORE_BUILD: pip install numpy cython
26+
CIBW_BEFORE_BUILD: pip install setuptools numpy cython
2727
CIBW_BUILD_FRONTEND: "pip; args: --no-build-isolation"
2828
CIBW_TEST_COMMAND: python -c "import mdfreader"
2929
- uses: actions/upload-artifact@v4

.github/workflows/release-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
env:
1515
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-*"
1616
CIBW_ARCHS: x86_64 arm64
17-
CIBW_BEFORE_BUILD: pip install numpy cython
17+
CIBW_BEFORE_BUILD: pip install setuptools numpy cython
1818
CIBW_BUILD_FRONTEND: "pip; args: --no-build-isolation"
1919
CIBW_TEST_COMMAND: python -c "import mdfreader"
2020
- uses: actions/upload-artifact@v4

.github/workflows/release-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: pypa/cibuildwheel@v2.22
1414
env:
1515
CIBW_BUILD: "cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64"
16-
CIBW_BEFORE_BUILD: pip install numpy cython
16+
CIBW_BEFORE_BUILD: pip install setuptools numpy cython
1717
CIBW_BUILD_FRONTEND: "pip; args: --no-build-isolation"
1818
CIBW_TEST_COMMAND: python -c "import mdfreader"
1919
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)