tuffy / python-audio-tools

A collection of audio handling programs which work from the command line.
http://audiotools.sourceforge.net
GNU General Public License v2.0
249 stars 58 forks source link

Fix version check of Urwid #82

Open Freso opened 5 months ago

Freso commented 5 months ago

Urwid used to provide VERSION both in its main namespace (urwid.VERSION) and under version (urwid.version.VERSION), but as of commit 8d8e4b678cc0f93149a4a964b26ee11fb136ea0f this is now only available in the main namespace, as setuptools-scm does not include VERSION in its generated version.py. This breaks audiotools with urwid>=2.2.0 (2023-09-21).

The simple fix is to just look at urwid.VERSION instead of urwid.version.VERSION, which is what this patch does.