From 34f8fe1c92d26c4d70626f9b2e3af8e1ce93fe75 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Tue, 2 Jul 2024 12:26:32 -0400 Subject: [PATCH] BUG: Fix download bug with image --- .github/workflows/build_wheels.yml | 2 ++ src/rtmixer.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 69637e1..2012687 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -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" diff --git a/src/rtmixer.py b/src/rtmixer.py index 807d9c0..0cdde95 100644 --- a/src/rtmixer.py +++ b/src/rtmixer.py @@ -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