@@ -49,19 +49,19 @@ jobs:
49
49
# https://github.com/github/feedback/discussions/7835#discussioncomment-1769026
50
50
buildplat :
51
51
- [ubuntu-22.04, manylinux_x86_64, ""]
52
- # - [ubuntu-22.04, musllinux_x86_64, ""]
53
- # - [ubuntu-22.04-arm, manylinux_aarch64, ""]
54
- # - [ubuntu-22.04-arm, musllinux_aarch64, ""]
55
- # - [macos-13, macosx_x86_64, openblas]
56
- #
57
- # # targeting macos >= 14. Could probably build on macos-14, but it would be a cross-compile
58
- # - [macos-13, macosx_x86_64, accelerate]
59
- # - [macos-14, macosx_arm64, openblas]
60
- # - [macos-14, macosx_arm64, accelerate]
61
- # - [windows-2022, win_amd64, ""]
62
- # - [windows-2022, win32, ""]
63
- # - [windows-11-arm, win_arm64, ""]
64
- python : ["cp311"]# , "cp312", "cp313", "cp313t", "cp314", "cp314t", "pp311"]
52
+ - [ubuntu-22.04, musllinux_x86_64, ""]
53
+ - [ubuntu-22.04-arm, manylinux_aarch64, ""]
54
+ - [ubuntu-22.04-arm, musllinux_aarch64, ""]
55
+ - [macos-13, macosx_x86_64, openblas]
56
+
57
+ # targeting macos >= 14. Could probably build on macos-14, but it would be a cross-compile
58
+ - [macos-13, macosx_x86_64, accelerate]
59
+ - [macos-14, macosx_arm64, openblas]
60
+ - [macos-14, macosx_arm64, accelerate]
61
+ - [windows-2022, win_amd64, ""]
62
+ - [windows-2022, win32, ""]
63
+ - [windows-11-arm, win_arm64, ""]
64
+ python : ["cp311", "cp312", "cp313", "cp313t", "cp314", "cp314t", "pp311"]
65
65
exclude :
66
66
# Don't build PyPy 32-bit windows
67
67
- buildplat : [windows-2022, win32, ""]
@@ -243,7 +243,7 @@ jobs:
243
243
name : Ensure commit is tag before upload to PyPi
244
244
245
245
# if: github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'pypi'
246
- # needs: [build_wheels, build_sdist]
246
+ needs : [build_wheels, build_sdist]
247
247
runs-on : ubuntu-latest
248
248
steps :
249
249
- name : Checkout numpy
@@ -254,13 +254,12 @@ jobs:
254
254
path : numpy-src
255
255
fetch-depth : 0
256
256
fetch-tags : true
257
- submodules : true
257
+ submodules : false
258
258
persist-credentials : false
259
259
260
260
- name : Examine git commit
261
261
run : |
262
262
cd numpy-src
263
- git checkout v2.3.2
264
263
hash=$(git describe HEAD)
265
264
echo $hash
266
265
if [[ $hash == *"-"*"-"* ]]; then
0 commit comments