Skip to content

Commit

Permalink
Remove np.nan and np.inf aliases no longer present in numpy2 from cha…
Browse files Browse the repository at this point in the history
…rt-studio
  • Loading branch information
bnavigator committed Jul 18, 2024
1 parent 23b50d9 commit 749d5df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from datetime import datetime as dt
import numpy as np

np_list = np.array([1, 2, 3, np.NaN, np.NAN, np.Inf, dt(2014, 1, 5)])
np_list = np.array([1, 2, 3, np.nan, np.inf, dt(2014, 1, 5)])
numeric_list = [1, 2, 3]
mixed_list = [
1,
Expand Down

0 comments on commit 749d5df

Please sign in to comment.