一个小问题。
cython 3.0版本后,编译过程中提示warning,nogil 应该放在 except + 的后面
warning: ctpwrapper/headers/DataCollect.pxd:8:61: The keyword 'nogil' should appear at the end of the function signature line. Placing it before 'except' or 'noexcept' will be disallowed in a future version of Cython.
如要修复,简单调整顺序即可
void Release() nogil except +
修改为
void Release() except + nogil