Skip to content

Commit

Permalink
Additional fix for missing pandas.Panel
Browse files Browse the repository at this point in the history
  • Loading branch information
enricodetoma committed Feb 5, 2021
1 parent c7f001c commit eaf1d0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion arctic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,9 @@

register_versioned_storage(PandasDataFrameStore)
register_versioned_storage(PandasSeriesStore)
register_versioned_storage(PandasPanelStore)
try:
from pandas import Panel
register_versioned_storage(PandasPanelStore)
except ImportError:
pass
register_versioned_storage(NdarrayStore)

0 comments on commit eaf1d0d

Please sign in to comment.