Skip to content

Commit d7bcee5

Browse files
committed
Fix mac and windows build
1 parent ac788b5 commit d7bcee5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Build wheels
5858
env:
5959
CIBW_ENVIRONMENT_PASS_LINUX: WFLOAT_SHERPA_ONNX_SOURCE_DIR MACOSX_DEPLOYMENT_TARGET
60-
MACOSX_DEPLOYMENT_TARGET: "11.0"
60+
MACOSX_DEPLOYMENT_TARGET: "13.4"
6161
WFLOAT_SHERPA_ONNX_SOURCE_DIR: ${{ runner.os == 'Linux' && '/project/sherpa-onnx' || format('{0}/sherpa-onnx', github.workspace) }}
6262
run: python -m cibuildwheel --output-dir wheelhouse
6363

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ build-backend = "setuptools.build_meta"
55
[tool.cibuildwheel]
66
build = "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
77
skip = "pp* *-win32 *-manylinux_i686 *-musllinux_*"
8-
test-command = 'python -c "from wfloat import version, write_wave; print(version)"'
8+
test-command = 'python -c "import wfloat; from wfloat._bindings import version, write_wave; print(wfloat.__version__, version)"'

0 commit comments

Comments
 (0)