We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5573448 commit 0f0ed59Copy full SHA for 0f0ed59
cebra/data/load.py
@@ -38,6 +38,7 @@
38
39
import abc
40
import pathlib
41
+import sys
42
import warnings
43
from typing import IO, List, Optional, Union
44
@@ -762,4 +763,7 @@ def read_hdf(filename, key=None):
762
763
except Exception as inner_e:
764
raise RuntimeError(
765
f"Failed to load HDF5 file with both pandas and h5py: {str(e)} -> {str(inner_e)}"
- )
766
+ f"h5py version: {h5py.__version__}, "
767
+ f"pandas version: {pd.__version__}, "
768
+ f"numpy version: {np.__version__}, "
769
+ f"python version: {sys.version}")
0 commit comments