Skip to content

Commit 760dbfa

Browse files
committed
FIX: Temporary fix for matplotlib issues with pandas 0.21
See this pandas issue pandas-dev/pandas#18283
1 parent cf1846e commit 760dbfa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pycomlink/core/comlink.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@
2323
from ..processing import Processor
2424
from ..spatial.helper import distance
2525

26+
27+
# Intermediate fix for pandas 0.21
28+
# https://github.com/pandas-dev/pandas/issues/18283
29+
# TODO: Remove this when solved via pandas 0.21.1
30+
from pandas.tseries import converter
31+
converter.register()
32+
2633
Coords = namedtuple('coords', ['lon_a', 'lon_b', 'lat_a', 'lat_b'])
2734

2835

0 commit comments

Comments
 (0)