Skip to content

Commit

Permalink
Merge pull request #65 from ocefpaf/drop_versioneer
Browse files Browse the repository at this point in the history
drop versioneer
  • Loading branch information
rabernat committed Nov 30, 2020
2 parents 7352b62 + a2464bd commit 9e83946
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 2,469 deletions.
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
__pycache__
*.egg-info
.eggs/
.hypothesis
.vscode/
__pycache__
build/
dist/
rechunker/_version.py
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
include LICENSE
include versioneer.py
include rechunker/_version.py
exclude rechunker/_version.py
8 changes: 4 additions & 4 deletions rechunker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Top-level package for Zarr Rechunker."""
from ._version import get_versions

__version__ = get_versions()["version"]
del get_versions
try:
from ._version import __version__
except ImportError:
__version__ = "unknown"

from .api import rechunk, Rechunked

0 comments on commit 9e83946

Please sign in to comment.