Skip to content

Commit

Permalink
fixup! DEP: drop scipy as a hard dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Nov 24, 2024
1 parent c77bd2d commit 2f3bec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nonos/api/satellite.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def file_analysis(
else:
# fallback to numpy if scipy isn't available (less performant)
for i, column in enumerate(columns):
columns[i] = np.convolve(column, np.ones_like(column), mode="valid")
columns[i] = np.convolve(column, Ntmean, mode="valid")
else:
raise NotImplementedError(
f"moving average on {norb} orbits is not implemented for the recipe {recipe}"
Expand Down

0 comments on commit 2f3bec9

Please sign in to comment.