Skip to content

Commit

Permalink
Bump version: 0.0.0 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerkclark committed Apr 13, 2021
1 parent bb0b6aa commit 46eca21
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
62 changes: 31 additions & 31 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[bumpversion]
current_version = 0.1.0
commit = True
tag = True

[metadata]
name = xpartition
version = attr: xpartition.__version__
Expand All @@ -6,46 +11,41 @@ author_email = [email protected]
license = MIT License
description = Tool for writing large xarray datasets to zarr stores with independent processes
url = https://github.com/spencerkclark/xpartition
classifiers =
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
classifiers =
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering

[options]
packages = find:
py_modules = xpartition
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
include_package_data = True
python_requires = >=3.6
install_requires =
xarray >= 0.16.2
dask[array] >= 2.9.0
setuptools >= 38.4 # For pkg_resources
dataclasses; python_version == "3.6"
zarr
setup_requires =
setuptools >= 38.4
setuptools_scm
install_requires =
xarray >= 0.16.2
dask[array] >= 2.9.0
setuptools >= 38.4 # For pkg_resources
dataclasses; python_version == "3.6"
zarr
setup_requires =
setuptools >= 38.4
setuptools_scm

[flake8]
ignore =
E203 # whitespace before ':' - doesn't work well with black
E402 # module level import not at top of file
E501 # line too long - let black worry about that
E731 # do not assign a lambda expression, use a def
W503 # line break before binary operator
exclude=
.eggs
doc

[bumpversion]
current_version = 0.0.0
commit = True
tag = True
ignore =
E203 # whitespace before ':' - doesn't work well with black
E402 # module level import not at top of file
E501 # line too long - let black worry about that
E731 # do not assign a lambda expression, use a def
W503 # line break before binary operator
exclude =
.eggs
doc

[bumpversion:file:xpartition.py]
search = __version__ = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion xpartition.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from typing import Callable, Dict, Hashable, List, Sequence, Tuple, Mapping


__version__ = "0.0.0"
__version__ = "0.1.0"


DIMENSION_DIM = "dimension"
Expand Down

0 comments on commit 46eca21

Please sign in to comment.