-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from lincc-frameworks/add_version
add version
- Loading branch information
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
from ._version import __version__ # noqa | ||
from .nestedframe import NestedFrame | ||
from .nestedframe.io import read_parquet | ||
|
||
# Import for registering | ||
from .series.accessor import NestSeriesAccessor # noqa: F401 | ||
from .series.dtype import NestedDtype | ||
|
||
|
||
__all__ = ["NestedDtype", "NestedFrame", "read_parquet"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import nested_pandas | ||
|
||
|
||
def test_version(): | ||
"""Check to see that the version property returns something""" | ||
assert nested_pandas.__version__ is not None |