Huite
Huite
> If these contain numba functions it could be that coverage is not recognizing them because they are compiled outside of python scope. I think a possible solution would be...
This could be a general option instead on any Ugrid2d topology, `contract_short_edges` or something. It's not trivial though: many short edges should not all be removed, they should be merged...
This is related to: #309 Maybe utilizing `set_close` already fixes this...!
Seems to be fixed some time ago for the feedstock.
Bit more digging: performance might be a concern. pyvista accepts numpy arrays, but this mostly calls Python for loops to unvectorized vtk methods, which is a bit disappointing. Ideally, you'd...
Ah I see, I had seen some methods for spherical geometries (the Gaussian quadrature methods, etc.), but hadn't realized the explicit focus so much. I suppose you have come across...
Hopefully goes without saying, but: Feel free to open issues or PRs on numba_celltree! I personally intend to still extend numba celltree capabilities to Cartesian 3D. I'm curious to hear...
After looking a little more: it seems like `py.path` was being used before, but I don't see it mentioned in `setup.cfg`. Maybe it was present due to an other dependency,...
Ah right, that explains it -- it would've taken quite some time to figure it out. Maybe it's worthwhile to mention this in the README? Currently, I guess I could've...
My `ci.yml` looks like this: ``` build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: install mamba uses: mamba-org/provision-with-micromamba@main - name: Test and build with tox run: | pip install...