Cython C-level interface of package: *.pxd files are not found
问题 In a nutshell I try to compile a cython extension called extension2 that cimports a file extension from a self-created package. When building extension2 , I get the error that extension.pxd is not found though this file is exactly at the sepcified path. Details I am building two packages involving cython, a package A and a package B that depends on A . A is a subpacke of a namespace package nsp . That is, the folder structure looks as follows: ├── nsp │ └── A | ├── extension.pxd | ├──