@@ -38,24 +38,24 @@ jobs:
3838 path : pysplashsurf/pysplashsurf/
3939
4040 linux :
41- name : Build wheels for Linux
41+ name : Build wheels ${{ matrix.platform.python-version }}
4242 needs : generate-stub
4343 runs-on : ${{ matrix.platform.runner }}
4444 strategy :
4545 fail-fast : false
4646 matrix :
4747 platform :
4848 - runner : ubuntu-24.04
49- python-version : " cp312- manylinux_x86_64"
49+ python-version : " manylinux_x86_64"
5050 archs : " x86_64"
5151 - runner : ubuntu-24.04
52- python-version : " cp312- manylinux_i686"
52+ python-version : " manylinux_i686"
5353 archs : " i686"
5454 - runner : ubuntu-24.04
55- python-version : " cp312- manylinux_aarch64"
55+ python-version : " manylinux_aarch64"
5656 archs : " aarch64"
5757 - runner : ubuntu-24.04
58- python-version : " cp312- manylinux_armv7l"
58+ python-version : " manylinux_armv7l"
5959 archs : " armv7l"
6060 steps :
6161 - uses : actions/checkout@v4
7979 - name : Build wheels
8080 run : python -m cibuildwheel --output-dir wheelhouse pysplashsurf
8181 env :
82- CIBW_BUILD : ${{ matrix.platform.python-version }}
82+ CIBW_BUILD : ${{ format('cp312-{0}', matrix.platform.python-version) }}
8383 CIBW_ARCHS : ${{ matrix.platform.archs }}
8484 CIBW_BEFORE_ALL : curl -sSf https://sh.rustup.rs | sh -s -- -y
8585 CIBW_ENVIRONMENT_LINUX : " PATH=$HOME/.cargo/bin:$PATH"
@@ -93,19 +93,19 @@ jobs:
9393 path : wheelhouse
9494
9595 macos :
96- name : Build wheels for macOS
96+ name : Build wheels ${{ matrix.platform.python-version }}
9797 needs : generate-stub
9898 runs-on : ${{ matrix.platform.runner }}
9999 strategy :
100100 fail-fast : false
101101 matrix :
102102 platform :
103103 - runner : macos-13
104- python-version : " cp312- macosx_x86_64"
104+ python-version : " macosx_x86_64"
105105 archs : " x86_64"
106106 macosx_deployment_target : " 13.0"
107107 - runner : macos-14
108- python-version : " cp312- macosx_arm64"
108+ python-version : " macosx_arm64"
109109 archs : " arm64"
110110 macosx_deployment_target : " 14.0"
111111 steps :
@@ -123,7 +123,7 @@ jobs:
123123 - name : Build wheels
124124 run : python -m cibuildwheel --output-dir wheelhouse pysplashsurf
125125 env :
126- CIBW_BUILD : ${{ matrix.platform.python-version }}
126+ CIBW_BUILD : ${{ format('cp312-{0}', matrix.platform.python-version) }}
127127 CIBW_ARCHS : ${{ matrix.platform.archs }}
128128 CIBW_BEFORE_ALL : curl -sSf https://sh.rustup.rs | sh -s -- -y
129129 CIBW_ENVIRONMENT_LINUX : " PATH=$HOME/.cargo/bin:$PATH"
@@ -139,7 +139,7 @@ jobs:
139139 path : wheelhouse
140140
141141 windows :
142- name : Build wheels for Windows
142+ name : Build wheels ${{ matrix.platform.python-version }}
143143 needs : generate-stub
144144 runs-on : ${{ matrix.platform.runner }}
145145 strategy :
@@ -148,10 +148,10 @@ jobs:
148148 platform :
149149 - runner : windows-latest
150150 archs : " AMD64"
151- python-version : " cp312- win_amd64"
151+ python-version : " win_amd64"
152152 - runner : windows-latest
153153 archs : " x86"
154- python-version : " cp312- win32"
154+ python-version : " win32"
155155 steps :
156156 - uses : actions/checkout@v4
157157 - name : Download stub artifact
@@ -167,7 +167,7 @@ jobs:
167167 - name : Build wheels
168168 run : python -m cibuildwheel --output-dir wheelhouse pysplashsurf
169169 env :
170- CIBW_BUILD : ${{ matrix.platform.python-version }}
170+ CIBW_BUILD : ${{ format('cp312-{0}', matrix.platform.python-version) }}
171171 CIBW_ARCHS : ${{ matrix.platform.archs }}
172172 CIBW_BEFORE_ALL : curl -sSf https://sh.rustup.rs | sh -s -- -y
173173 CIBW_ENVIRONMENT_LINUX : " PATH=$HOME/.cargo/bin:$PATH"
0 commit comments