From ddf42d58e488af8068fa082884e4147546acc835 Mon Sep 17 00:00:00 2001 From: Bastian Bechtold Date: Mon, 9 May 2022 16:07:32 +0200 Subject: [PATCH] increments version number --- README.rst | 13 +++++++++---- setup.py | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 4e4af66..cde4648 100644 --- a/README.rst +++ b/README.rst @@ -152,12 +152,12 @@ as silence for both playback and recording. FAQ --- -Q: How to make it work on a headless Raspberry Pi? +Q: How to make it work on a headless Raspberry Pi? -A: PulseAudio is not installed by default on the Raspberry Pi OS Lite distribution (https://www.raspberrypi.org/software/operating-systems/). In order to use ``soundcard``, you have to install PulseAudio first, and edit the configuration (with a fix to avoid the main output to be in mono-only). :: +A: PulseAudio is not installed by default on the Raspberry Pi OS Lite distribution (https://www.raspberrypi.org/software/operating-systems/). In order to use ``soundcard``, you have to install PulseAudio first, and edit the configuration (with a fix to avoid the main output to be in mono-only). :: - sudo apt install -y python3-pip python3-numpy pulseaudio - sudo nano /usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf + sudo apt install -y python3-pip python3-numpy pulseaudio + sudo nano /usr/share/pulseaudio/alsa-mixer/profile-sets/default.conf # comment the block [Mapping analog-mono] with ';' pulseaudio -D python3 -m pip install soundcard @@ -208,3 +208,8 @@ Changelog (Thank you, Bob Thomas!) - 2020-05-19 adds compatibility with Windows 7 (Thank you, demberto!) +- 2021-11-24 adds compatibility with NixOS library naming + (Thank you, shithead!) +- 2021-12-23 fixes deprecation for Python 3.10 + (Thank you, Nekyo!) +- 2022-04-29 fixes deprecation in recent Numpy diff --git a/setup.py b/setup.py index a272ba2..0b47d25 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='SoundCard', - version='0.4.0', + version='0.4.2', description='Play and record audio without resorting to CPython extensions', author='Bastian Bechtold', url='https://github.com/bastibe/SoundCard',