Benjamin Perret
Benjamin Perret
Hi, I remember discussing this on Gitter with probably @wolfv and @JohanMabille . I think that at that time we decided to keep better debugging info for users instead of...
One could do it in ``pybind11`` or ``numpy`` style. First, define header files as package data : they will be copied in the package directory during install. Then define a...
Yes, pinkio is convenient (and easy to implement) but clearly very inefficient, both from a memory and time point of view: it was written essentially to offer a backward compatibility...
Note that graphs are now picklable which should be quite efficient but is not a long term storage solution
Simple POC for partition hierarchy ```Python def hierarchy_to_ete_tree(tree, altitudes=None, **attributes): ete_tree = ete.Tree() stack = [(tree.root(), ete_tree)] if altitudes is not None: altitudes = altitudes[tree.parents()] - altitudes while len(stack) !=...
Thanks for your answer, indeed I was rather thinking about the low level feature. In my use case, there is no scroll bar (I use the scroll event to simulate...
@spectre-ns @JohanMabille hello, did you find a workaround for this problem? Activating the flag ``/Zc:lambda`` does solve the failed capture of the constexpr var in the lambda https://learn.microsoft.com/en-us/cpp/build/reference/zc-lambda?view=msvc-170 . However...
Need extra env for cibuildwheel https://cibuildwheel.readthedocs.io/en/stable/faq/#apple-silicon Cmake must be instructed to cross-compile https://github.com/pypa/cibuildwheel/issues/1345#issuecomment-1322568086 If activated TBB should also be cross-compiled... not sure if this is worth supporting, maybe wait until...
Hi Jordão, thank you for your feedback, it's a pleasure to know that Higra is useful to you. It's great news that your colleagues have been able to compile from...
Oh thank you for pointing this. I'll set up the CI/CD then, hopefully everything goes smoothly, and binaries will be available soon for Mac silicon Edit: apparently ATM only Github...