1
0

- update to 1.2.18:

* dbus-python will be built for python3
  * Python 2 reached end-of-life on 2020-01-01. A future version of
    dbus-python is likely to remove Python 2 support.
  * Move from collections.Sequence to collections.abc.Sequence on
    Python ≥ 3.3, for Python 3.10 compatibility
  * Avoid another deprecation warning for inspect.getargspec().
    This is similar to the one fixed in 1.2.4, but for dbus.decorators.signal
    rather than dbus.decorators.method. (dbus-python!8; Martin Stumpf)
  * Fix an unlikely fd leak if memory allocation fails for UnixFd
  * Fix memory and fd leak if UnixFd is given an invalid negative
    variant_level
  * Avoid more deprecation warnings
  * Disable -Wdeclaration-after-statement. Python 3.9 relies on intermixed
    declarations and statements in its headers, so we can no longer
    enforce this. (Simon McVittie)
  * Convert examples to Python 3 (Simon McVittie)
  * Use the same Python executable for build and dist/distcheck by default
  * CI fixes

OBS-URL: https://build.opensuse.org/package/show/Base:System/python-dbus-python?expand=0&rev=21
This commit is contained in:
2021-07-27 06:34:35 +00:00
committed by Git OBS Bridge
parent 3355c1466f
commit 5cfbbb0acd
6 changed files with 43 additions and 20 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Tue Jul 27 06:30:09 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 1.2.18:
* dbus-python will be built for python3
* Python 2 reached end-of-life on 2020-01-01. A future version of
dbus-python is likely to remove Python 2 support.
* Move from collections.Sequence to collections.abc.Sequence on
Python ≥ 3.3, for Python 3.10 compatibility
* Avoid another deprecation warning for inspect.getargspec().
This is similar to the one fixed in 1.2.4, but for dbus.decorators.signal
rather than dbus.decorators.method. (dbus-python!8; Martin Stumpf)
* Fix an unlikely fd leak if memory allocation fails for UnixFd
* Fix memory and fd leak if UnixFd is given an invalid negative
variant_level
* Avoid more deprecation warnings
* Disable -Wdeclaration-after-statement. Python 3.9 relies on intermixed
declarations and statements in its headers, so we can no longer
enforce this. (Simon McVittie)
* Convert examples to Python 3 (Simon McVittie)
* Use the same Python executable for build and dist/distcheck by default
* CI fixes
-------------------------------------------------------------------
Wed Jun 9 00:48:35 UTC 2021 - Simon Lees <sflees@suse.de>