Skip to content

Commit 5fff4b5

Browse files
committed
fix pandas-dev#41 change the way to check for pandas version
1 parent 71b229c commit 5fff4b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arctic/store/_version_store_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def _define_compat_pickle_load():
6363
"""Factory function to initialise the correct Pickle load function based on
6464
the Pandas version.
6565
"""
66-
if pd.version.version.startswith("0.14"):
66+
if pd.__version__.startswith("0.14"):
6767
return pickle.load
6868
return functools.partial(pickle_compat.load, compat=True)
6969

0 commit comments

Comments
 (0)