Skip to content
Snippets Groups Projects
Commit b058d651 authored by Boman Romain's avatar Boman Romain
Browse files

fix `np.int` was a deprecated alias for the builtin `int` (numpy)

parent 3b1794fd
No related branches found
No related tags found
1 merge request!3Update docker to latest (VTK9+OneAPI)
Pipeline #17336 passed
......@@ -45,7 +45,7 @@ def getTemp(solver, linelabel="Bottom", sort='x'):
import numpy as np
v = np.array(extr.execute())
nos = np.zeros_like(v, dtype=np.int)
nos = np.zeros_like(v, dtype=int)
nxs = np.zeros_like(v)
nys = np.zeros_like(v)
for i in range(len(v)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment