We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a05ac commit 8177c02Copy full SHA for 8177c02
h5pandas/__init__.py
@@ -1,6 +1,7 @@
1
from .h5array import HDF5ExtensionArray
2
from .h5datatype import HDF5Dtype
3
-from .dataframe import dataset_to_dataframe
+from .dataframe import dataset_to_dataframe, dataframe_to_hdf5, ndarray_to_hdf5
4
from h5py import *
5
from .group import Group, File
6
-__version__ = "0.6"
+
7
+__version__ = "0.7"
setup.py
@@ -15,7 +15,7 @@
15
# This call to setup() does all the work
16
setup(
17
name="h5pandas",
18
- version="0.6",
+ version="0.7",
19
description="Load hdf5 into Pandas DataFrame instantaneously",
20
long_description=long_description,
21
long_description_content_type="text/markdown",
0 commit comments