Skip to content

Commit ffd1f63

Browse files
committed
Merge pull request pandas-dev#46 from llazzaro/master
fix pandas-dev#41 change the way to check for pandas version
2 parents f9c2bde + 5fff4b5 commit ffd1f63

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)