Skip to content

Commit dbac4e7

Browse files
committed
no split() function
1 parent 32521d1 commit dbac4e7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/release.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ jobs:
5252
os: [ubuntu-latest, macos-latest, windows-latest]
5353
cibw_arch: ["auto64", "aarch64", "universal2"]
5454
cibw_python:
55-
- "cp38-*"
56-
- "cp39-*"
57-
- "cp310-*"
58-
- "cp311-*"
59-
- "cp312-*"
60-
- "cp313-*"
55+
- "cp38"
56+
- "cp39"
57+
- "cp310"
58+
- "cp311"
59+
- "cp312"
60+
- "cp313"
6161
exclude:
6262
- os: ubuntu-latest
6363
cibw_arch: universal2
@@ -90,7 +90,7 @@ jobs:
9090
- uses: pypa/cibuildwheel@7940a4c0e76eb2030e473a5f864f291f63ee879b # v2.21.3
9191
env:
9292
CIBW_BUILD_VERBOSITY: 1
93-
CIBW_BUILD: ${{ matrix.cibw_python }}
93+
CIBW_BUILD: ${{ matrix.cibw_python }}-*
9494
CIBW_ARCHS: ${{ matrix.cibw_arch }}
9595
CIBW_TEST_EXTRAS: "test"
9696
CIBW_TEST_COMMAND: "python {project}/tests/__init__.py"
@@ -99,7 +99,7 @@ jobs:
9999

100100
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
101101
with:
102-
name: dist-${{ matrix.os }}-${{ matrix.cibw_arch }}-${{ matrix.cibw_python.split('-')[0] }}
102+
name: dist-${{ matrix.os }}-${{ matrix.cibw_arch }}-${{ matrix.cibw_python }}
103103
path: wheelhouse/*.whl
104104

105105
publish:

0 commit comments

Comments
 (0)