Skip to content

Commit bd70c8b

Browse files
committed
Try to copy numpy
1 parent 8e413c3 commit bd70c8b

File tree

1 file changed

+8
-21
lines changed

1 file changed

+8
-21
lines changed

.github/workflows/pip.yml

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -26,37 +26,24 @@ jobs:
2626
run: echo "Il puzzaculo è stato qui"
2727

2828
build_wheels:
29-
name: Build wheels on ${{ matrix.os }}
30-
runs-on: ${{ matrix.os }}
29+
name: Build wheel ${{ matrix.python }}-${{ matrix.buildplat[1] }}-${{ matrix.buildplat[2] }}
30+
runs-on: ${{ matrix.buildplat[0] }}
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
include:
35-
- os: ubuntu-latest
36-
37-
# - os: macos-26
38-
# macos_target: "26.0"
39-
# - os: macos-26-intel
40-
# macos_target: "26.0"
41-
42-
# - os: macos-15
43-
# macos_target: "15.0"
44-
# - os: macos-15-intel
45-
# macos_target: "15.0"
46-
47-
- os: macos-14
48-
# macos_target: "14.0"
49-
- os: macos-14-intel
50-
# macos_target: "14.0"
34+
python: ["cp38", "cp39", "cp310", "cp311", "cp312", "cp313", "cp314"]
35+
buildplat:
36+
- [ubuntu-22.04, manylinux_x86_64, ""]
37+
- [macos-15-intel, macosx_x86_64, openblas]
38+
- [macos-14, macosx_arm64, openblas]
5139

5240
steps:
5341
- uses: actions/checkout@v4
5442
with:
5543
submodules: true #not needed
5644
- uses: pypa/cibuildwheel@v3.4.0
5745
env:
58-
CIBW_SKIP: pp* cp36-* *-musllinux_x86_64 *_i686
59-
CIBW_ENVIRONMENT_MACOS: "MACOSX_DEPLOYMENT_TARGET=11.0"
46+
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
6047
CIBW_BEFORE_ALL_LINUX: >
6148
yum -y install wget &&
6249
yum -y install tar &&

0 commit comments

Comments
 (0)