christofsteel / pyautosplit

Autosplitter for Linux (for the LiveSplit Server)
Apache License 2.0
45 stars 5 forks source link

Fix Python version to be 3.9 in `setup.py` #8

Closed InfoTeddy closed 3 years ago

InfoTeddy commented 3 years ago

Due to the use of list[Any] in game.py, PyAutoSplit only works with Python versions 3.9 or later.

christofsteel commented 3 years ago

True, that is an oversight. But I think the better solution would be to use from typings import List and then List[Any] to still be compatible with lower python versions.

christofsteel commented 3 years ago

Fixed by 4820e079026e412805d8c29d4f53b8ff4e3edca2