Open ebrocas opened 11 months ago
Even though python 3.9 will reach EOL at the end of 2025 I would still prefer keeping the usage of TypeAlias
as it's better for type checkers such as mypy.
IMHO we can update the requirement to python >= 3.10.
What do you think about this @RobinDavid ?
Hello,
I've tried to run python-binexport (through the command line tool) with a Python 3.9 installation and it does not work.
Looking at the documentation of the
typing
module,TypeAlias
was introduced with Python 3.10 (https://docs.python.org/3.10/library/typing.html#typing.TypeAlias).I suppose that either you could find a workaround or either you should just modify the
pyproject.toml
to announce that you do not support Python 3.9 and only above versions.Thanks in advance !