Skip to content

Commit

Permalink
removed use of numpy.NAN: it was a synonym of numpy.nan that has …
Browse files Browse the repository at this point in the history
…been removed recently
  • Loading branch information
deeenes committed Jun 17, 2024
1 parent 138088d commit 2dfecfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omnipath/_misc/dtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
TRUE = frozenset(("true", "t", "yes", "y"))
FALSE = frozenset(("false", "f", "no", "n"))
BOOL = frozenset().union(TRUE, FALSE)
NA = frozenset(("na", "NA", "NaN", "none", "None", None, pd.NA, pd.NaT, np.NAN, np.nan))
NA = frozenset(("na", "NA", "NaN", "none", "None", None, pd.NA, pd.NaT, np.nan))
INT = frozenset(
("int64", "uint64", "int32", "uint32", "int16", "uint16", "int8", "uint8")
)
Expand Down

0 comments on commit 2dfecfd

Please sign in to comment.