Skip to content

Commit 9e775d4

Browse files
committed
ENH: Add 3.9 support
1 parent 543a98f commit 9e775d4

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

NEWS.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 0.1.3 -- 2021-05-05 -- PyPI__ -- diff__
2+
* Add Python 3.9 support by adding entries to ``azure-pipelines.yml``
3+
for ``cibuildwheel``
4+
5+
__ https://pypi.org/project/rtmixer/0.1.3/
6+
__ https://github.com/spatialaudio/python-rtmixer/compare/0.1.2...0.1.3
7+
18
Version 0.1.2 -- 2020-08-20 -- PyPI__ -- diff__
29
* Clean up ``cibuildwheel``
310

azure-pipelines.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.7', architecture: x64}}
5050
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.8', architecture: x86}}
5151
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.8', architecture: x64}}
52+
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.9', architecture: x86}}
53+
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.9', architecture: x64}}
5254
- bash: |
5355
git submodule update --init --recursive
5456
python -m pip install --upgrade pip

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.2'
6+
__version__ = '0.1.3'
77

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

0 commit comments

Comments
 (0)