Unable to Build .ZIP File
Closed this issue · 4 comments
ewhac commented
I've been successfully building animation-nodes on my own for some time. It had been several months since I updated my copy. When I went to update and build it recently, the build failed, with Cython unable to find symbols/defs.
The build command:
python3.10 setup.py build --export --noversioncheck
The versions:
- OS: Debian "Sid"
- Cython: 0.29.36
Build output attached.
OmarEmaraDev commented
Can you try Cython 3.0?
ewhac commented
Apologies -- I'm running Cython3:
$ cython3 --version
Cython version 0.29.36
OmarEmaraDev commented
@ewhac The 3 in cython3
is for the 3 in python3
. Your actual version is 0.29.36
, the latest version of Cython is 3.0.2 (released 2023-08-27). So you need to update Cython.
ewhac commented
Thank you. I installed Cython v3.0.5 from Debian's experimental repo, and now it builds fine.