Numpy issue wityh pyvista

I am encountering an error while using PyVista, which seems to be caused by the removal of np.bool in NumPy 1.24+. The error message suggests that np.bool was deprecated in NumPy 1.20 and removed in later versions, but PyVista (or one of its dependencies) is still referencing it.

How to fix this issue ?

Upgrade to numpy>=2.0.0, in which np.bool is an alias for np.bool_.