14
0

- Omit html docs due to hostile build system

- Update to 1.5.7
Fixes:
  * Fixed linting errors in `send_all.py` example.
    gh#SpotlightKid/python-rtmidi#184
  * Fixed (no)gil/except declarations on MIDI in callback and
    `MidiOut.sendMessage`.
    The GIL is acquired in any case for MIDI in callback and C++
    `sendMessage` call, since Cython needs to check for exceptions.
    Also remove wrong statement about the GIL being released in
    docstring for `send_message`.
    gh#SpotlightKid/python-rtmidi#185
  * Fixed errors and check for empty message correctly when passing
    an iter- or generator instead of a sequence to
    `MidiOut.send_message`.
    gh#SpotlightKid/python-rtmidi#186
    gh#SpotlightKid/python-rtmidi#188
- 1.5.6
Fixes:
  * Fixed building with `meson-python` >= 0.14.0.
    gh#SpotlightKid/python-rtmidi#177
- 1.5.5
  * Bump minimum Python version to 3.8
Fixes:
  * Fixed Cython compilation errors and warnings.
    gh#SpotlightKid/python-rtmidi#174
- 1.5.4
Changes:
  * Added `send_all.py` script to examples.
    gh#SpotlightKid/python-rtmidi#167

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-rtmidi?expand=0&rev=19
This commit is contained in:
2023-11-07 00:18:40 +00:00
committed by Git OBS Bridge
parent fd472e9496
commit bdaa5a473e
4 changed files with 64 additions and 32 deletions

View File

@@ -1,3 +1,52 @@
-------------------------------------------------------------------
Mon Nov 6 23:47:32 UTC 2023 - Mia Herkt <mia@0x0.st>
- Omit html docs due to hostile build system
- Update to 1.5.7
Fixes:
* Fixed linting errors in `send_all.py` example.
gh#SpotlightKid/python-rtmidi#184
* Fixed (no)gil/except declarations on MIDI in callback and
`MidiOut.sendMessage`.
The GIL is acquired in any case for MIDI in callback and C++
`sendMessage` call, since Cython needs to check for exceptions.
Also remove wrong statement about the GIL being released in
docstring for `send_message`.
gh#SpotlightKid/python-rtmidi#185
* Fixed errors and check for empty message correctly when passing
an iter- or generator instead of a sequence to
`MidiOut.send_message`.
gh#SpotlightKid/python-rtmidi#186
gh#SpotlightKid/python-rtmidi#188
- 1.5.6
Fixes:
* Fixed building with `meson-python` >= 0.14.0.
gh#SpotlightKid/python-rtmidi#177
- 1.5.5
* Bump minimum Python version to 3.8
Fixes:
* Fixed Cython compilation errors and warnings.
gh#SpotlightKid/python-rtmidi#174
- 1.5.4
Changes:
* Added `send_all.py` script to examples.
gh#SpotlightKid/python-rtmidi#167
- 1.5.3, 1.5.2
Changes:
* Updated `rtmidi` submodule.
gh#SpotlightKid/python-rtmidi#156
- 1.5.1, 1.5.0
Fixes:
* Fixed memleak in `midiutils.list_{in,out}put_ports` function.
gh#SpotlightKid/python-rtmidi#103
* Fixed compilation with PyPy3.
Documentation:
* Clarified return types in docstrings.
* Converted readme, changelog, authors, and install docs to
Markdown.
-------------------------------------------------------------------
Tue Jun 27 12:56:49 UTC 2023 - Edgar Aichinger <edogawa@aon.at>