Sebastian Müller
Sebastian Müller
Just replace `m2r` with `m2r2`: https://pypi.org/project/m2r2/
I got the very same problem.
I got 5.2.1 installed. Only extension I have installed is the spyder-terminal. Checking my open processes I found that this command: ``` /usr/bin/python3 -m spyder_kernels.console -f /home..... ``` fills up...
I tried: ```bash pip uninstall spyder-terminal pip install -I --no-cache-dir spyder ``` But still, I open spyder and can watch the memory being filled by the same process.
Another important thing regarding `loadtxt` is, that if the array would be returned, you couldn't overload the function. For example gfortran would throw an error like this: ``` Error: Ambiguous...
AFAICT, https://github.com/urbanjost/M_CLI2 already provides a `fpm` package.
Sorry, I have totally missed this Issue. Quite busy ATM. Maybe I can have a look at this later.
Having a second look at this, I don't think, this is a problem at the VTK side, since in VTK all grids are described by 3D points. The problem is...
Oh I see, that apparently meshio stores 2D meshes explicitly with only 2D points. So I could truncate the points list in 2D and it should work. https://github.com/nschloe/meshio/blob/d9c05ae688858b5166630874f3ec875a43b8fd37/meshio/vtk/_vtk.py#L585 Then the...
@s1291 as a workaround, you could truncate the points-dimension by hand: ```python import meshio mesh = meshio.read("rect2d.vtk") mesh.points = mesh.points[:, :2] meshio.write("rect2d.msh", mesh, file_format="ansys-ascii") ```