* Do not register standard D-Bus service directories (Thanks Benjamin Berg)
* templates: Add IIO Sensors Proxy support (Thanks Marco Trevisan)
* Fix importlib module import (Thanks Marco Trevisan)
* Clean up code for most recent pylint version
* Add Add power-profiles-daemon template (Thanks Bastien Nocera)
* logind: Implement Inhibit and ListInhibitors (Thanks to Benjamin Berg)
* Fix new complaints from pylint 2.9
* Fix tests for Python 3.10
* DBusMockObject: Add UpdateProperties() method (Thanks to Jonas Ådahl)
* DBusTestCase: Add bus override argument to spawn_server_template, to use
templates on either system or session bus; add corresponding --session CLI
option
* bluez template: Implement Pair() method on the Device interface and the
AgentManager1 interface (Thanks to Bastien Nocera)
* polkit template: Implement RegisterAuthenticationAgent() (Thanks to
Jonas Ådahl)
* Add accountsservice template (Thanks to Marco Trevisan)
* NetworkManager template: Fix connecting to wifi
* NetworkManager template: Add Reload() method
* tests: Replace nose test runner with standard unittest
* setup.py: Drop deprecated `test_suite`, run tests through
`python3 -m unittest` directly
* Add type annotations to the whole API
* Drop obsolete ConsoleKit and bluez4 templates/tests
* upower template: Drop support for 0.9 API
* NetworkManager template: Handle NetworkingEnable
* NetworkManager template: AddConnectionUnsaved
* Drop support for Python 2
- Add python-dataclasses to {Build,}Requires
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dbusmock?expand=0&rev=18
- Require python-dbus-python: dbusmock can't work without this
module.
without this, you get:
```
> python3
Python 3.7.3 (default, Apr 09 2019, 05:18:21) [GCC] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbusmock
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.7/site-packages/dbusmock/__init__.py", line 16, in <module>
from dbusmock.mockobject import (DBusMockObject, MOCK_IFACE,
File "/usr/lib/python3.7/site-packages/dbusmock/mockobject.py", line 27, in <module>
import dbus
ModuleNotFoundError: No module named 'dbus'
```
OBS-URL: https://build.opensuse.org/request/show/769868
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dbusmock?expand=0&rev=13