Skip to content

Commit

Permalink
Merge pull request #272 from SchmJo/fix_numpy2
Browse files Browse the repository at this point in the history
fix for incompatibility with numpy 2
  • Loading branch information
ocefpaf authored Jun 20, 2024
2 parents 9507d62 + 3fb8948 commit cf5f528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windrose/windrose.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.projections.polar import PolarAxes
from numpy.lib.twodim_base import histogram2d
from numpy import histogram2d

ZBASE = -1000 # The starting zorder for all drawing, negative to have the grid on
VAR_DEFAULT = "speed"
Expand Down

0 comments on commit cf5f528

Please sign in to comment.