Skip to content

Commit

Permalink
Bump version: 0.1.22 → 0.1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
victoria-cherkas committed Nov 3, 2022
1 parent 6547dfa commit 46b3680
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 40 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = "Victoria Cherkas, Annika Lauber"

# The full version, including alpha/beta/rc tags
release = "v0.1.22"
release = "v0.1.23"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion env/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ dependencies:
- psy-reg
- cartopy
- pip:
- git+https://github.com/C2SM/[email protected].22
- git+https://github.com/C2SM/[email protected].23
- pre-commit
73 changes: 36 additions & 37 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[bumpversion]
current_version = 0.1.22
current_version = 0.1.23
commit = True
tag = True

[tool:pytest]
filterwarnings =
filterwarnings =
ignore::DeprecationWarning
console_output_style = progress
testpaths = iconarray
Expand All @@ -13,41 +13,40 @@ testpaths = iconarray
max-line-length = 100
max-complexity = 15
doctests = false
ignore =
B008 # Do not perform function calls in argument defaults
E203 # Whitespace before ':' (black formatter breaks this sometimes)
E501 # Line too long (using Bugbear's B950 warning)
W503 # Line break occurred before a binary operator
E731 # Do not assign a lambda expression, use a def
C901 # Function is too complex
DAR000 # Unexpected exception in darglint: Multiple types should be combined into a Union
D107 # Missing docstring in __init__
D105 # Missing docstring in magic method
exclude =
.eggs
.gt_cache
.ipynb_checkpoints
.tox
_local_
build
dist
doc/*
_external_src
tests/_disabled
setup.py
__init__.py
env/*

rst-roles=
py:mod, mod,
py:func, func,
py:data, data,
py:const, const,
py:class, class,
py:meth, meth,
py:attr, attr,
py:exc, exc,
py:obj, obj,
ignore =
B008 # Do not perform function calls in argument defaults
E203 # Whitespace before ':' (black formatter breaks this sometimes)
E501 # Line too long (using Bugbear's B950 warning)
W503 # Line break occurred before a binary operator
E731 # Do not assign a lambda expression, use a def
C901 # Function is too complex
DAR000 # Unexpected exception in darglint: Multiple types should be combined into a Union
D107 # Missing docstring in __init__
D105 # Missing docstring in magic method
exclude =
.eggs
.gt_cache
.ipynb_checkpoints
.tox
_local_
build
dist
doc/*
_external_src
tests/_disabled
setup.py
__init__.py
env/*
rst-roles =
py:mod, mod,
py:func, func,
py:data, data,
py:const, const,
py:class, class,
py:meth, meth,
py:attr, attr,
py:exc, exc,
py:obj, obj,

[darglint]
docstring_style = numpy
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name="iconarray", # Required
version="v0.1.22", # Required
version="v0.1.23", # Required
description="A package of modules for processing and plotting ICON data.", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional
Expand Down

0 comments on commit 46b3680

Please sign in to comment.