Skip to content

Commit 2b0ee4b

Browse files
authored
BUG: Fix download bug with image (#56)
1 parent 505ecd0 commit 2b0ee4b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
env:
5555
CIBW_ARCHS: "${{ matrix.arch }}"
5656
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"
5759
CIBW_TEST_COMMAND: "python -c \"import rtmixer; print(rtmixer.__version__)\""
5860
# No portaudio on these platforms:
5961
CIBW_TEST_SKIP: "*_i686 *-musllinux_* *_aarch64"

src/rtmixer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
https://python-rtmixer.readthedocs.io/
44
55
"""
6-
__version__ = '0.1.6'
6+
__version__ = '0.1.7'
77

88
import sounddevice as _sd
99
from pa_ringbuffer import init as _init_ringbuffer

0 commit comments

Comments
 (0)