Francesco Biscani
Francesco Biscani
Apologies if this is a stupid question, but I have not much experience with Anaconda :) Do you by any chance use some patched version of Python in Anaconda or...
This is the global include I am using in another project: https://github.com/bluescarni/piranha/blob/master/pyranha/python_includes.hpp
Thanks for taking the time to run these tests! I think the error message might be misleading, as one of the only two tests that pass is the torture one...
Regarding the other questions: - I talked to Dario and it seems like we might end up dropping C++03 compatibility in the future, so not sure if it worth to...
Note that M_PI and the others are not standard compliant. Macros are bit yucky but it's true that the boost syntax can be painful for repeated uses. Other options: -...
Why not writing a small macro to wrap those three lines in one instead? I am not a fan of auto-discovery or file globbing in these cases. The list of...
@jdiez17 Just for reference, this is a possible way of doing it: https://github.com/bluescarni/piranha/blob/master/tests/CMakeLists.txt
PR is up at #83. I guess you'll have to enable the project in the appveyor config page, if you haven't already.
I enabled appveyor on my fork to test it, build is passing: https://ci.appveyor.com/project/bluescarni/nifty/build/1.0.2 Python is not enabled yet as I am running into undefined symbol errors in conjunction with HDF5.
@DerThorsten actually there's more issues when enabling the python bindings on MSVC. In addition to the HDF5 linking issue: 1) for whatever reason, the usage of ``size_t`` instead of ``std::size_t``...