/.venv/lib/python3.12/site-packages/evdev/eventio_async.py:101: DeprecationWarning: There is no current event loop
loop = asyncio.get_event_loop()
asyncio.get_event_loop() produces a DeprecationWarning when called (see above for an example), and there are a couple of instances of get_event_loop being used in this package.
https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.get_event_loop
It should be relatively simple to switch over to get_running_loop. If it's helpful, I can put up a PR myself to make this change.
asyncio.get_event_loop()produces a DeprecationWarning when called (see above for an example), and there are a couple of instances ofget_event_loopbeing used in this package.https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.get_event_loop
It should be relatively simple to switch over to
get_running_loop. If it's helpful, I can put up a PR myself to make this change.