I downloaded a module that uses Cython. I installed it after building the content as folows,
python setup.py build
python setup.py install
But I would like to make changes to the Cython parts of that module and recompile them. It turns out that I can't recompile the Cython files. In other words, I simply get this output when I build again,
build_src: building npy-pkg config files
running build_py
running build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
running build_scripts
without any changes beinf reflected in the installation directory.
My goal is to make changes to a Cython .pyx file that is part of a large module and have it recompiled and installed after every change I make.
Thanks.