Description of problem and/or code sample that reproduces the issue
getting the following traceback with pandas 0.24 while all works fine with 0.23.4
ImportError Traceback (most recent call last)
in
----> 1 from arctic import Arctic
~/miniconda3/lib/python3.7/site-packages/arctic/__init__.py in
1 """ The Arctic TimeSeries and Tick store."""
2
----> 3 from .arctic import Arctic, register_library_type
4 from .arctic import VERSION_STORE, TICK_STORE, CHUNK_STORE
5 from .store.version_store import register_versioned_storage, register_version
~/miniconda3/lib/python3.7/site-packages/arctic/arctic.py in
12 from .hooks import get_mongodb_uri
13 from .store import version_store, bson_store, metadata_store
---> 14 from .tickstore import tickstore, toplevel
15 from .chunkstore import chunkstore
16 from six import string_types
~/miniconda3/lib/python3.7/site-packages/arctic/tickstore/tickstore.py in
7 import numpy as np
8 import pandas as pd
----> 9 from pandas.core.frame import _arrays_to_mgr
10 import pymongo
11 from pymongo import ReadPreference
ImportError: cannot import name '_arrays_to_mgr' from 'pandas.core.frame' (/Users/steffen/miniconda3/lib/python3.7/site-packages/pandas/core/frame.py)
Arctic Version
Arctic Store
Platform and version
macOS Mojave 10.14.2, py 3.7.2
Description of problem and/or code sample that reproduces the issue
getting the following traceback with
pandas 0.24
while all works fine with0.23.4
ImportError Traceback (most recent call last)