We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71b229c commit 5fff4b5Copy full SHA for 5fff4b5
arctic/store/_version_store_utils.py
@@ -63,7 +63,7 @@ def _define_compat_pickle_load():
63
"""Factory function to initialise the correct Pickle load function based on
64
the Pandas version.
65
"""
66
- if pd.version.version.startswith("0.14"):
+ if pd.__version__.startswith("0.14"):
67
return pickle.load
68
return functools.partial(pickle_compat.load, compat=True)
69
0 commit comments