Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update init for build #168

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions python/ndstorage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name = "ndstorage"
from ._version import __version__, version_info

from ndstorage.ndstorage_base import NDStorageAPI, WritableNDStorageAPI
from ndstorage._superclass import Dataset
from ndstorage.ndtiff_dataset import NDTiffDataset
from ndstorage.ndram_dataset import NDRAMDataset
from ndstorage.ndtiff_pyramid_dataset import NDTiffPyramidDataset

from .ndstorage_base import NDStorageAPI, WritableNDStorageAPI
from ._superclass import Dataset
from .ndtiff_dataset import NDTiffDataset
from .ndram_dataset import NDRAMDataset
from .ndtiff_pyramid_dataset import NDTiffPyramidDataset
2 changes: 1 addition & 1 deletion python/ndstorage/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 1, 10)
version_info = (0, 1, 11)
__version__ = ".".join(map(str, version_info))
Loading