Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerkclark committed May 5, 2021
1 parent ef9a665 commit 7a8bee5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True
tag = True

Expand All @@ -10,11 +10,11 @@ author = Spencer K. Clark
author_email = [email protected]
license = MIT License
description = Tool for writing large xarray datasets to zarr stores with independent processes
long_description =
xpartition provides a way to split N-dimensional dask-backed arrays into
a user-specified number of blocks of dask chunks. This can be useful for
assigning work to batch jobs on HPC systems or Dataflow workers in an
Apache Beam pipeline in the cloud.
long_description =
xpartition provides a way to split N-dimensional dask-backed arrays into
a user-specified number of blocks of dask chunks. This can be useful for
assigning work to batch jobs on HPC systems or Dataflow workers in an
Apache Beam pipeline in the cloud.
long_description_content_type = text/plain
url = https://github.com/spencerkclark/xpartition
classifiers =
Expand Down
2 changes: 1 addition & 1 deletion xpartition.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from typing import Callable, Dict, Hashable, Sequence, Tuple, Mapping


__version__ = "0.1.0"
__version__ = "0.2.0"


Region = Sequence[Mapping[Hashable, slice]]
Expand Down

0 comments on commit 7a8bee5

Please sign in to comment.