Tero Paloheimo

Results 17 issues of Tero Paloheimo

SafeEyes does not start without dbus-python and therefore it is added to required dependencies in setup.py.

The use of setup.py as a command line tool is deprecated. build.sh is updated to use the recommended building command.

As of Python 3.12 setuptools is no longer installed by default and if setuptools is not installed distutils is not found and SafeEyes fails to start. Furthermore distutils is deprecated...

Examples (and some code too) use the `asyncio.get_event_loop().run_until_complete()` function call chain to run asynchronous functions. With Python 3.12 a DeprecationWarning is emitted: `ruuvitag-sensor/examples/get_async_bleak.py:18: DeprecationWarning: There is no current event loop`....

bug

Changes: * Use recommended build package for building as the use of setup.py as a command line to tool is deprecated * Install multiple packages with one command which theoretically...

Changes: * Remove adapter setting for asynchronous examples * Set BlueZ adapter for synchronous examples

Python 3.13 has been released last week so add support for it so that early adopters can use it.