Closed matthiasdiener closed 11 months ago
Hey, it should probably pass the build step
This PR currently only supports Python 3.11 since the internal API has changed with 3.11 (this is why this PR is still in draft). I'm not sure what the best way to support older Python versions is.
Typically projects like cython use
#if PY_VERSION_HEX >= 0x030b0000
<do something>
#else
<do something else>
#endif
Hey, it should probably pass the build step