I created a project and selected a numpy Auto(2.1.3) package, then cython 3.0.11 was added in the Dependencies list.
Numpy 2.1.3 release says,
“The Python versions supported by this release are 3.10-3.13.”
Why does Numpy 2.1.3 require cython 3.0.11? Is it a dependency error?
Hello,
Cython is not Python, Cython is a Python compiler that makes writing C extensions for Python as easy as Python itself, it has a different versioning scheme than Python: GitHub - cython/cython: The most widely used Python to C compiler
Numpy has a dependency on cython>=3.0.6, and 3.0.11 is the latest version of Cython available.