Michael Mark
Results
2
comments of
Michael Mark
Hi, I have implemented a workaround to asses the quality of the fits. Not perfect, definitely slow but should work. See: https://github.com/majkee15/TICK-goodness-of-fit
include_dirs passed to setup() gets ignored in the latest distutils, it has to be passed to each Extension, (at least on mac) ``` extensions = [ Extension("my_ext", ["my_ext.pyx"], include_dirs=[numpy.get_include()]) ]...