It seems like compiling an __init__.pyx that contains a cimport statement is buggy.
This is my folder-structure:
DrawAPI\ __init__.pyx utils.pxd The __init__.pyx:
cimport utils Compiling the __init__.pyx with cython gives me that utils.pxd could not be found. But renaming __init__.pyx to any other name, like foo.pyx for instance
DrawAPI\ foo.pyx utils.pxd and then compiling foo.pyx works just fine.
Am I doing something wrong ?