Skip to content

Commit

Permalink
Bump version: 0.2.1 → 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerkclark committed Jul 28, 2024
1 parent 4e63635 commit b8bfefd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.2.2
commit = True
tag = True

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion xpartition.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down

0 comments on commit b8bfefd

Please sign in to comment.