Hi,
First, I save this program as "my_ceil.py", and compile this it with "cythonize -i my_ceil.py".
The compile succeeds, but when I run it like "python -c 'import my_ceil'", I get the following error: "ModuleNotFoundError: No module named 'cython.cimports'; 'cython' is not a package". The cause is probably in the cimports section, but I don't know how to solve it.
Here are versions of my environment:
Python: 3.9
Cython: 0.29.24
Ubuntu: 20.04
Cheers.
kobajin