The use of the pipe operate to define types (i.e. str | None) was not supported until Python 3.10, so panphon does not work for Python < 3.10. Minimally the package should require Python 3.10, but it would be great if support for 3.9 could stay and you could use typing.Union instead of the pipe operator.
The use of the pipe operate to define types (i.e.
str | None) was not supported until Python 3.10, so panphon does not work for Python < 3.10. Minimally the package should require Python 3.10, but it would be great if support for 3.9 could stay and you could use typing.Union instead of the pipe operator.