jaimergp
jaimergp
Sure! Let me know what you need to know :) The napari docs have some info: - https://napari.org/dev/developers/packaging.html - NAP-2: https://napari.org/dev/naps/2-conda-based-packaging.html# That's probably a good start.
> Can you explain why there are two different application types? `napari` is transitioning from Briefcase-based bundles (.zip containing a DMG) to constructor-based ones (.pkg). In the transition phase, both...
> So, the _conda.exe executable file contains menuist? Yes. And some patches not present in the regular conda. See [here](https://github.com/conda-forge/conda-standalone-feedstock). > Is there a reason why you need menuist for...
It just contains this file https://github.com/napari/napari/blob/main/resources/conda_menu_config.json It needs to be placer under $PREFIX/Menu, but you need the new menuinst, constructor fork, patched conda-standalone, and so on.
It should :/ It's what we are using for our CI, currently using extra_envs. See [here](https://github.com/napari/packaging/blob/7ac4206ce7664064c8efc41a2e0873bf091028a2/build_installers.py#L237-L262).
Ah, yes, sorry, now I see what you mean. The implementation found in the `bundle_tools` variants were the minimum ones needed for `napari`. Most of it has made it to...
The problem with the menuinst-related features is that it requires code on `constructor` too 😬 So right now you have to choose between using `environment` in your `extra_envs` or fancy...
I'd say stick to the `bundle_tools` family for the first prototype. By the time you have something working I might need to move `napari` to upstream (sometime in September), at...
Hi Florian! Thanks for your answer. Looks like that function is defined [here](https://github.com/openbabel/openbabel/blob/08e23f39b0cc39b4eebd937a5a2ffc1a7bac3e1b/src/atom.cpp#L1779-L1815). I wonder which test the backbone oxygen is failing.
I have checked again, and I misunderstood your comment, sorry! Both atoms are being perceived as H-bond donors: ```python from plip.structure.preparation import PDBComplex from openbabel import openbabel as ob def...