pyvista / pyiges

Python IGES Reader
https://pyvista.github.io/pyiges/
MIT License
33 stars 8 forks source link

Some features fail in `pyvista==0.40` due to usage of vtk imports from pyvista #36

Closed AlejandroFernandezLuces closed 1 year ago

AlejandroFernandezLuces commented 1 year ago

I'm getting errors in this PR when bumping pyvista version due to this package using the VTK library through pyvista. This feature was removed in the last PyVista version.

To solve this, VTK imports should be used directly.


from pyvista import _vtk  # wrong
import vtk