diff --git a/setup.cfg b/setup.cfg index 51ba293..35a941c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 commit = True tag = True @@ -43,16 +43,11 @@ setup_requires = setuptools_scm [flake8] -ignore = - # whitespace before ':' - doesn't work well with black +ignore = E203 - # module level import not at top of file E402 - # line too long - let black worry about that E501 - # do not assign a lambda expression, use a def E731 - # line break before binary operator W503 exclude = .eggs diff --git a/xpartition.py b/xpartition.py index a9a3528..3f04aa7 100644 --- a/xpartition.py +++ b/xpartition.py @@ -9,7 +9,7 @@ import numpy as np import xarray as xr -__version__ = "0.2.1" +__version__ = "0.2.2" Region = Union[None, Mapping[Hashable, slice]]