Skip to content

Commit 44a9747

Browse files
committed
added Python 3.14
1 parent 601d03c commit 44a9747

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2121

2222
steps:
2323
- uses: actions/checkout@v3

.github/workflows/wheelbuilder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# I can't get windows tests to work, but at least here's linux testing the built wheels
3333
CIBW_TEST_REQUIRES: pytest
3434
CIBW_ARCHS_MACOS: 'x86_64 arm64'
35-
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-* cp313-*'
35+
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*'
3636
CIBW_TEST_COMMAND_LINUX: "cd {project} && pytest -v tests/"
3737
# doesn't work?: CIBW_ENVIRONMENT_MACOS: 'CFLAGS="-DMA_NO_RUNTIME_LINKING -framework AudioToolbox "'
3838

.github/workflows/wheeltest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# I can't get windows tests to work, but at least here's linux testing the built wheels
2929
CIBW_TEST_REQUIRES: pytest
3030
CIBW_ARCHS_MACOS: 'x86_64 arm64'
31-
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-* cp313-*'
31+
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*'
3232
CIBW_TEST_COMMAND_LINUX: "cd {project} && pytest -v tests/"
3333

3434

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ test:
1212
rm -f *.so *.pyd
1313
${PYTHON} setup.py clean
1414
${PYTHON} setup.py build
15-
${PYTHON} setup.py test
1615
${PYTHON} -m pytest -v tests
1716
# mypy --follow-imports skip miniaudio.py
1817

@@ -31,6 +30,8 @@ win_wheels: test
3130
py -3.12-64 setup.py bdist_wheel
3231
py -3.13-64 setup.py clean --all
3332
py -3.13-64 setup.py bdist_wheel
33+
py -3.14-64 setup.py clean --all
34+
py -3.14-64 setup.py bdist_wheel
3435

3536
linux_wheel: test
3637
rm -f dist/* *.so

0 commit comments

Comments
 (0)