FFY00 / dbus-objects

DBus objects implementation on top of the Python type system
https://dbus-objects.readthedocs.io/en/latest/
MIT License
11 stars 4 forks source link

Add compatibility with Python 3.7 #2

Closed FFY00 closed 4 years ago

FFY00 commented 4 years ago

I think everything we need from Python 3.8 has been backported in typing_extensions.

get_args and get_origin are only in typing_extensions on Python 3.7 and up because they need PEP 560, so that is the minimum Python version we will be able to support.

FFY00 commented 4 years ago

We also need a test runner to test all supported versions. Will use nox.

FFY00 commented 4 years ago

Fixed in 7688fc8e5813a68b3388607b5637f30d5320fdf5.