Skip to content

Commit 46eca21

Browse files
committed
Bump version: 0.0.0 → 0.1.0
1 parent bb0b6aa commit 46eca21

2 files changed

Lines changed: 32 additions & 32 deletions

File tree

setup.cfg

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
[bumpversion]
2+
current_version = 0.1.0
3+
commit = True
4+
tag = True
5+
16
[metadata]
27
name = xpartition
38
version = attr: xpartition.__version__
@@ -6,46 +11,41 @@ author_email = spencerkclark@gmail.com
611
license = MIT License
712
description = Tool for writing large xarray datasets to zarr stores with independent processes
813
url = https://github.com/spencerkclark/xpartition
9-
classifiers =
10-
Development Status :: 2 - Pre-Alpha
11-
License :: OSI Approved :: MIT License
12-
Operating System :: OS Independent
13-
Intended Audience :: Science/Research
14-
Programming Language :: Python
15-
Programming Language :: Python :: 3
16-
Topic :: Scientific/Engineering
14+
classifiers =
15+
Development Status :: 2 - Pre-Alpha
16+
License :: OSI Approved :: MIT License
17+
Operating System :: OS Independent
18+
Intended Audience :: Science/Research
19+
Programming Language :: Python
20+
Programming Language :: Python :: 3
21+
Topic :: Scientific/Engineering
1722

1823
[options]
1924
packages = find:
2025
py_modules = xpartition
2126
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
2227
include_package_data = True
2328
python_requires = >=3.6
24-
install_requires =
25-
xarray >= 0.16.2
26-
dask[array] >= 2.9.0
27-
setuptools >= 38.4 # For pkg_resources
28-
dataclasses; python_version == "3.6"
29-
zarr
30-
setup_requires =
31-
setuptools >= 38.4
32-
setuptools_scm
29+
install_requires =
30+
xarray >= 0.16.2
31+
dask[array] >= 2.9.0
32+
setuptools >= 38.4 # For pkg_resources
33+
dataclasses; python_version == "3.6"
34+
zarr
35+
setup_requires =
36+
setuptools >= 38.4
37+
setuptools_scm
3338

3439
[flake8]
35-
ignore =
36-
E203 # whitespace before ':' - doesn't work well with black
37-
E402 # module level import not at top of file
38-
E501 # line too long - let black worry about that
39-
E731 # do not assign a lambda expression, use a def
40-
W503 # line break before binary operator
41-
exclude=
42-
.eggs
43-
doc
44-
45-
[bumpversion]
46-
current_version = 0.0.0
47-
commit = True
48-
tag = True
40+
ignore =
41+
E203 # whitespace before ':' - doesn't work well with black
42+
E402 # module level import not at top of file
43+
E501 # line too long - let black worry about that
44+
E731 # do not assign a lambda expression, use a def
45+
W503 # line break before binary operator
46+
exclude =
47+
.eggs
48+
doc
4949

5050
[bumpversion:file:xpartition.py]
5151
search = __version__ = "{current_version}"

xpartition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from typing import Callable, Dict, Hashable, List, Sequence, Tuple, Mapping
1212

1313

14-
__version__ = "0.0.0"
14+
__version__ = "0.1.0"
1515

1616

1717
DIMENSION_DIM = "dimension"

0 commit comments

Comments
 (0)