@@ -49,18 +49,18 @@ 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, ""]
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
64
python : ["cp311", "cp312", "cp313", "cp313t", "cp314", "cp314t", "pp311"]
65
65
exclude :
66
66
# Don't build PyPy 32-bit windows
79
79
- buildplat : [ macos13, macosx_x86_64, openblas ]
80
80
python : " cp314t"
81
81
include :
82
- - buildplat : [ ubuntu-22.04, pyodide_wasm32, "" ]
83
- python : " cp312"
84
82
- buildplat : [ ubuntu-22.04, pyodide_wasm32, "" ]
85
83
python : " cp313"
86
84
env :
@@ -224,7 +222,7 @@ jobs:
224
222
225
223
testpypi-publish :
226
224
name : Publish release to TestPyPI
227
- if : github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'testpypi'
225
+ # if: github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'testpypi'
228
226
needs : [build_wheels, build_sdist]
229
227
runs-on : ubuntu-latest
230
228
environment :
@@ -238,13 +236,18 @@ jobs:
238
236
with :
239
237
path : dist
240
238
241
- - name : Publish
242
- uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
243
- with :
244
- repository-url : https://test.pypi.org/legacy/
245
- skip-existing : true
246
- print-hash : true
247
- attestations : true
239
+ - name : Remove wasm wheels
240
+ run : |
241
+ rm dist/*wasm*.whl
242
+ ls -al dist
243
+
244
+ # - name: Publish
245
+ # uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
246
+ # with:
247
+ # repository-url: https://test.pypi.org/legacy/
248
+ # skip-existing: true
249
+ # print-hash: true
250
+ # attestations: true
248
251
249
252
check_version :
250
253
name : Ensure commit is tag before upload to PyPi
@@ -292,6 +295,11 @@ jobs:
292
295
with :
293
296
path : dist
294
297
298
+ - name : Remove wasm wheels
299
+ run : |
300
+ rm dist/*wasm*.whl
301
+ ls -al dist
302
+
295
303
- name : Publish
296
304
uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
297
305
with :
0 commit comments