Skip to content

Commit

Permalink
Rename nan for numpy 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer authored Jan 8, 2025
1 parent 4bf7d78 commit 78af461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steppyngstounes/stepper.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def __init__(self, start, stop, size=None, minStep=None,
self._sizes = [size or (stop - start)]
self._steps = [start - self._sizes[-1]]
self._successes = [True]
self._values = [np.NaN]
self._values = [np.nan]
self._errors = [1.]
self._saveStep = None
self._isDone = False
Expand Down

0 comments on commit 78af461

Please sign in to comment.