We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 505ecd0 commit 2b0ee4bCopy full SHA for 2b0ee4b
.github/workflows/build_wheels.yml
@@ -54,6 +54,8 @@ jobs:
54
env:
55
CIBW_ARCHS: "${{ matrix.arch }}"
56
CIBW_BUILD: "${{ matrix.python }}-*"
57
+ CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux2014_x86_64:latest"
58
+ CIBW_MANYLINUX_AARCH64_IMAGE: "quay.io/pypa/manylinux2014_aarch64:latest"
59
CIBW_TEST_COMMAND: "python -c \"import rtmixer; print(rtmixer.__version__)\""
60
# No portaudio on these platforms:
61
CIBW_TEST_SKIP: "*_i686 *-musllinux_* *_aarch64"
src/rtmixer.py
@@ -3,7 +3,7 @@
3
https://python-rtmixer.readthedocs.io/
4
5
"""
6
-__version__ = '0.1.6'
+__version__ = '0.1.7'
7
8
import sounddevice as _sd
9
from pa_ringbuffer import init as _init_ringbuffer
0 commit comments