Skip to content

Commit 8461786

Browse files
committed
Correct build.yml file
1 parent bf8d7a6 commit 8461786

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,39 +23,38 @@ jobs:
2323
- os: ubuntu-latest
2424
arch: x86_64
2525
artifact_name: "linux-x86_64"
26-
numpy-version: [null]
26+
numpy-version: null
2727

2828
# Linux x86_64 with numpy 1.23
2929
- os: ubuntu-latest
3030
arch: x86_64
3131
artifact_name: "linux-x86_64_numpy1_23"
32-
python-version: "3.12"
3332
numpy-version: "1.23"
3433

3534
# Linux ARM64 builds (native runners)
3635
- os: ubuntu-24.04-arm
3736
arch: aarch64
3837
artifact_name: "linux-aarch64"
39-
numpy-version: [null]
38+
numpy-version: null
4039

4140
# Windows builds
4241
- os: windows-latest
4342
arch: x86_64
4443
artifact_name: "windows-x86_64"
45-
numpy-version: [null]
44+
numpy-version: null
4645

4746
# macOS builds (universal2)
4847
- os: macos-latest
4948
arch: x86_64
5049
artifact_name: "macos-universal2"
51-
numpy-version: [null]
50+
numpy-version: "null"
5251
steps:
5352
- uses: actions/checkout@v3
5453

5554
- uses: actions/setup-python@v3
5655
name: Install Python
5756
with:
58-
python-version: '3.x'
57+
python-version: '3.12'
5958

6059
- name: Install specific numpy version
6160
if: matrix.numpy-version

0 commit comments

Comments
 (0)