You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
decrunch.cpp: In function ‘int __Pyx_modinit_type_init_code()’:
decrunch.cpp:3372:38: error: ‘PyTypeObject’ {aka ‘struct _typeobject’} has no member named ‘tp_print’
3372 | __pyx_type_8decrunch_UnpackContext.tp_print = 0;
Root of the problem is that python3.9 removed tp_print, causing the pre-generated decrunch.cpp in the PyPI release to not compile. Installing from source using Cython works because the newer versions of Cython don't emit C++ sources that use tp_print.
decrunch.cpp: In function ‘int __Pyx_modinit_type_init_code()’:
decrunch.cpp:3372:38: error: ‘PyTypeObject’ {aka ‘struct _typeobject’} has no member named ‘tp_print’
3372 | __pyx_type_8decrunch_UnpackContext.tp_print = 0;
System: Ubuntu 21.04 (GNU/Linux 5.11.0-16-generic x86_64)
The text was updated successfully, but these errors were encountered: