Issue with libtcod importing NDArray from numpy.typing when it should just be importing ndarray from numpy.
deeredman1991 opened this issue · 3 comments
deeredman1991 commented
HexDecimal commented
The issue is more that the requirements are too old. numpy.typing.NDArray
is a Numpy 1.21 feature and is not the same as numpy.ndarray
. You should upgrade your Numpy installation.
HexDecimal commented
NumPy dropped support of Python 3.7. So the latest versions require Python 3.8 or later. You should still be able to get NumPy 1.21.x which is what the CI tests have been apparently using.
deeredman1991 commented
That did it! Thank you very much!