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
Sometime after initial release v1.0.0, using setup.py to build and install a Python extension appears to be broken.
After performing a git bisect, it looks like the last working commit for me is 76fc755, and the first bad commit is 116aab7. I tried this on a couple different machines to rule out an environment issue.
In certain commits between 116aab7 and present, when running python3 setup.py build_ext, I get errors such as:
/home/vincebel/iso22133-test/iso22133.h:451:1: error: unknown type name ‘ISOMessageReturnValue’; use ‘enum’ keyword to refer to the type
451 | ISOMessageReturnValue decodeDCTIMessage(const char *dctiDataBuffer, const size_t bufferLength, DctiMessageDataType* dctiData, const char debug);
| ^~~~~~~~~~~~~~~~~~~~~
| enum
or, more commonly (such as on current master / 323bcd5):
Sometime after initial release v1.0.0, using setup.py to build and install a Python extension appears to be broken.
After performing a git bisect, it looks like the last working commit for me is 76fc755, and the first bad commit is 116aab7. I tried this on a couple different machines to rule out an environment issue.
In certain commits between 116aab7 and present, when running
python3 setup.py build_ext
, I get errors such as:or, more commonly (such as on current master / 323bcd5):
I see mention of SWIG / Python in #42 , maybe related?
The text was updated successfully, but these errors were encountered: