From b8bfefd474340ab2f4de4a0dd2ca72b34db9759c Mon Sep 17 00:00:00 2001 From: Spencer Clark Date: Sun, 28 Jul 2024 07:39:54 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.1=20=E2=86=92=200.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 9 ++------- xpartition.py | 2 +- 2 files changed, 3 insertions(+), 8 deletions(-) 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]]