Skip to content

Commit ec8bdac

Browse files
committed
attempt to fix build action
1 parent 541f791 commit ec8bdac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/wheelbuilder.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
CIBW_TEST_REQUIRES: pytest
3434
CIBW_ARCHS_MACOS: 'x86_64 arm64'
3535
# CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-* cp313-*'
36-
CIBW_SKIP: 'cp36-* cp37-*'
36+
CIBW_SKIP: 'cp36-* cp37-* cp38-*'
3737
CIBW_TEST_COMMAND_LINUX: "cd {project} && pytest -v tests/"
3838
# doesn't work?: CIBW_ENVIRONMENT_MACOS: 'CFLAGS="-DMA_NO_RUNTIME_LINKING -framework AudioToolbox "'
3939

4040

4141
- uses: actions/upload-artifact@v4
4242
with:
43-
name: pypi_artifacts
43+
name: pypi_artifacts_wheels
4444
path: ./wheelhouse/*.whl
4545

4646
build_sdist:
@@ -59,7 +59,7 @@ jobs:
5959

6060
- uses: actions/upload-artifact@v4
6161
with:
62-
name: pypi_artifacts
62+
name: pypi_artifacts_source
6363
path: dist/*.tar.gz
6464

6565
upload_pypi:
@@ -70,7 +70,7 @@ jobs:
7070
steps:
7171
- uses: actions/download-artifact@v4
7272
with:
73-
name: pypi_artifacts
73+
name: pypi_artifacts_wheels
7474
path: dist
7575

7676
- uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)