xsuite / xplt

Plotting library for Xsuite and other accelerator physics codes
https://xsuite.github.io/xplt/
Apache License 2.0
10 stars 4 forks source link

Replace np.float with builtin type float #6

Closed milo-gsi closed 7 months ago

milo-gsi commented 7 months ago

np.float and np.int were deprecated with release 1.20.0

https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations

and eventually dropped with release 1.24.0

https://numpy.org/doc/stable/release/1.24.0-notes.html#expired-deprecations

(Alternatively, np.float can be replaced by np.float64)

This PR ...

Closes #...

Testing

...

Before After
... ...

My contribution follows "inbound=outbound" licensing as defined by the GitHub Terms of Service.

milo-gsi commented 7 months ago

Spotted using NumPy 1.26.4

eltos commented 7 months ago

Danke @milo-gsi !