From c827e710cc14a7f721cb37c719064f88db71f035 Mon Sep 17 00:00:00 2001 From: Matteo Cerutti Date: Sat, 18 Apr 2020 13:06:18 +0100 Subject: [PATCH] Fixed issue #36 - AttributeError when saving a Pandas object with Pandas 0.24.0 or greater --- deepdish/io/hdf5io.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deepdish/io/hdf5io.py b/deepdish/io/hdf5io.py index 07465f0..75457dd 100644 --- a/deepdish/io/hdf5io.py +++ b/deepdish/io/hdf5io.py @@ -7,6 +7,7 @@ from deepdish import conf try: import pandas as pd + pd.io.pytables._tables() _pandas = True except ImportError: _pandas = False