Skip to content

Commit 591e85d

Browse files
authored
Merge pull request #67 from ocefpaf/fix_for_latest_pandas
fix for latest pandas
2 parents af53c90 + e74d69b commit 591e85d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

oceans/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def stick_plot(time, u, v, **kw):
4343
from pandas import DatetimeIndex
4444
from pandas.plotting import register_matplotlib_converters
4545

46-
register_matplotlib_converters(True)
46+
register_matplotlib_converters()
4747

4848
width = kw.pop("width", 0.002)
4949
headwidth = kw.pop("headwidth", 0)

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
gsw
22
matplotlib
33
numpy
4+
pandas>=1.0.1
45
seawater

0 commit comments

Comments
 (0)