Skip to content

Commit be153c6

Browse files
authoredMar 18, 2025··
Merge pull request #505 from pydata/andfoy-support_free_threading
This is an extension of #504 to fix some issues with tests. The tests for aarch64 are currently commented out, because CI (via qemu) gets stalled. However, my arm64 box (MacMini M4) does not have a single issue, so I suppose it is an issue with qemu. This overrides #504. @andfoy @rgommers
2 parents 36aa11b + 0c42b7d commit be153c6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+489
-337
lines changed
 

‎.github/workflows/build.yml

+47-22
Original file line numberDiff line numberDiff line change
@@ -6,37 +6,56 @@ permissions:
66
contents: read
77

88
env:
9-
CIBW_BEFORE_BUILD: pip install setuptools oldest-supported-numpy
9+
CIBW_BEFORE_BUILD: pip install setuptools oldest-supported-numpy pytest
10+
CIBW_BEFORE_TEST: pip install pytest
1011
CIBW_BUILD_VERBOSITY: 1
11-
CIBW_TEST_COMMAND: python -c "import sys, numexpr; sys.exit(0 if numexpr.test().wasSuccessful() else 1)"
12-
CIBW_TEST_SKIP: "*macosx*arm64*"
12+
CIBW_TEST_COMMAND: pytest --pyargs numexpr
13+
# Testing on aarch64 takes too long, as it is currently emulated on GitHub Actions
14+
CIBW_TEST_SKIP: "*linux*aarch64*"
1315
# Building for musllinux and aarch64 takes way too much time.
1416
# Moreover, NumPy is not providing musllinux for x86_64 either, so it's not worth it.
1517
CIBW_SKIP: "*musllinux*aarch64* *musllinux*x86_64*"
1618

1719
jobs:
1820
build_wheels:
19-
name: Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} - ${{ matrix.p_ver }}
20-
runs-on: ${{ matrix.os }}
21+
name: Build wheels on ${{ matrix.os }} for ${{ matrix.arch }}
22+
runs-on: ${{ matrix.runs-on || matrix.os }}
2123
permissions:
2224
contents: write
2325
env:
24-
CIBW_BUILD: ${{ matrix.cibw_build }}
26+
CIBW_BUILD: ${{ matrix.cibw_pattern }}
2527
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
2628
CIBW_ARCHS_MACOS: "x86_64 arm64"
29+
CIBW_ENABLE: cpython-freethreading
2730
strategy:
31+
fail-fast: false
2832
matrix:
29-
os: [ubuntu-latest, windows-latest, macos-latest]
30-
arch: [x86_64, aarch64]
31-
cibw_build: ["cp3{10,11,12,13}-*"]
32-
p_ver: ["3.10-3.13"]
33-
exclude:
34-
- os: windows-latest
35-
arch: aarch64
36-
# cibuild is already in charge to build aarch64 (see CIBW_ARCHS_MACOS)
37-
- os: macos-latest
33+
include:
34+
# Linux x86_64 builds
35+
- os: ubuntu-latest
36+
arch: x86_64
37+
cibw_pattern: "cp3{10,11,12,13,13t}-manylinux*"
38+
artifact_name: "linux-x86_64"
39+
40+
# Linux ARM64 builds (native runners)
41+
- os: ubuntu-latest
3842
arch: aarch64
43+
cibw_pattern: "cp3{10,11,12,13,13t}-manylinux*"
44+
artifact_name: "linux-aarch64"
45+
# Don't use native runners for now (looks like wait times are too long)
46+
#runs-on: ["ubuntu-latest", "arm64"]
3947

48+
# Windows builds
49+
- os: windows-latest
50+
arch: x86_64
51+
cibw_pattern: "cp3{10,11,12,13,13t}-win*"
52+
artifact_name: "windows-x86_64"
53+
54+
# macOS builds (universal2)
55+
- os: macos-latest
56+
arch: x86_64
57+
cibw_pattern: "cp3{10,11,12,13,13t}-macosx*"
58+
artifact_name: "macos-universal2"
4059
steps:
4160
- uses: actions/checkout@v3
4261

@@ -45,17 +64,22 @@ jobs:
4564
with:
4665
python-version: '3.x'
4766

48-
- name: Install cibuildwheel
67+
- name: Setup free-threading variables
68+
if: ${{ endsWith(matrix.cibw_build, 't-*') }}
69+
shell: bash -l {0}
4970
run: |
50-
python -m pip install cibuildwheel
71+
echo "CIBW_BEFORE_BUILD=pip install setuptools numpy" >> "$GITHUB_ENV"
72+
echo "CIBW_BEFORE_TEST=pip install pytest pytest-run-parallel" >> "$GITHUB_ENV"
73+
echo "CIBW_TEST_COMMAND=pytest --parallel-threads=4 --pyargs numexpr" >> "$GITHUB_ENV"
5174
52-
- uses: docker/setup-qemu-action@v2
53-
if: ${{ matrix.arch == 'aarch64' }}
54-
name: Set up QEMU
75+
- name: Set up QEMU
76+
if: matrix.arch == 'aarch64'
77+
uses: docker/setup-qemu-action@v3
78+
with:
79+
platforms: arm64
5580

5681
- name: Build wheels
57-
run: |
58-
python -m cibuildwheel --output-dir wheelhouse
82+
uses: pypa/cibuildwheel@v2.23
5983

6084
- name: Make sdist
6185
if: ${{ matrix.os == 'windows-latest' }}
@@ -65,6 +89,7 @@ jobs:
6589
6690
- uses: actions/upload-artifact@v4
6791
with:
92+
name: ${{ matrix.artifact_name }}
6893
path: ./wheelhouse/*
6994

7095
- name: Upload to GitHub Release

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ artifact/
77
numexpr.egg-info/
88
*.pyc
99
*.swp
10+
*.so
1011
*~
1112
doc/_build
1213
site.cfg

0 commit comments

Comments
 (0)
Please sign in to comment.