Skip to content

Commit

Permalink
BUG: Fix download bug with image
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jul 2, 2024
1 parent 505ecd0 commit 34f8fe1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:
env:
CIBW_ARCHS: "${{ matrix.arch }}"
CIBW_BUILD: "${{ matrix.python }}-*"
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux2014_x86_64:latest"
CIBW_MANYLINUX_AARCH64_IMAGE: "quay.io/pypa/manylinux2014_aarch64:latest"
CIBW_TEST_COMMAND: "python -c \"import rtmixer; print(rtmixer.__version__)\""
# No portaudio on these platforms:
CIBW_TEST_SKIP: "*_i686 *-musllinux_* *_aarch64"
Expand Down
2 changes: 1 addition & 1 deletion src/rtmixer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
https://python-rtmixer.readthedocs.io/
"""
__version__ = '0.1.6'
__version__ = '0.1.7'

import sounddevice as _sd
from pa_ringbuffer import init as _init_ringbuffer
Expand Down

0 comments on commit 34f8fe1

Please sign in to comment.