14
0

- Update to 3.0.0:

* Add support for pyinstaller.
  * Fix support for python 3.10.
  * Drop python <3.4 support.
  * Do not load the C library on import. Allows applications to customise
    the lookup logic (see usb1.loadLibrary).
  * Add LIBUSB_SPEED_SUPER_PLUS.
  * Better control device iterator end of life.
  * Fix objects escaping control from their parent.
  * Fix a TypeError exception in USBContext.handleEvents.
  * Fix an AttributeError exception in USBContext.hotplugRegisterCallback.
  * Fix segfault in pypy3 when finalizing USBDevice objects.
  * Source only: convert examples to python3.
  * Release process: also run some examples scripts.
  * Update versioneer to be compatible with 3.11.
  * Drop python <3.6 support.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-libusb1?expand=0&rev=7
This commit is contained in:
2022-03-03 04:51:14 +00:00
committed by Git OBS Bridge
parent 09e0911762
commit 0748e56b14
4 changed files with 25 additions and 6 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Mar 3 04:49:28 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 3.0.0:
* Add support for pyinstaller.
* Fix support for python 3.10.
* Drop python <3.4 support.
* Do not load the C library on import. Allows applications to customise
the lookup logic (see usb1.loadLibrary).
* Add LIBUSB_SPEED_SUPER_PLUS.
* Better control device iterator end of life.
* Fix objects escaping control from their parent.
* Fix a TypeError exception in USBContext.handleEvents.
* Fix an AttributeError exception in USBContext.hotplugRegisterCallback.
* Fix segfault in pypy3 when finalizing USBDevice objects.
* Source only: convert examples to python3.
* Release process: also run some examples scripts.
* Update versioneer to be compatible with 3.11.
* Drop python <3.6 support.
-------------------------------------------------------------------
Wed Jan 20 09:43:06 UTC 2021 - John Vandenberg <jayvdb@gmail.com>