Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Oct 17, 2020
1 parent ded0723 commit b8afe7e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion oceanspy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__author__ = """Mattia Almansi"""
__email__ = "[email protected]"
# fmt: off
__version__ = '0.1.0'
__version__ = '0.2.0'
# fmt: on

from ._oceandataset import OceanDataset # noqa: F401
Expand Down
19 changes: 7 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True
tag = True

Expand All @@ -16,25 +16,20 @@ universal = 1

[flake8]
max-line-length = 88
ignore =
# whitespace before ':' - doesn't work well with black
E203
# line break before binary operator
W503
ignore =
E203
W503
exclude = docs

[flake8_nb]
max-line-length = 88
ignore =
# whitespace before ':' - doesn't work well with black
E203
# line break before binary operator
W503
ignore =
E203
W503
exclude = .py

[aliases]
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
tests_require=test_requirements,
url="https://github.com/hainegroup/oceanspy",
# fmt: off
version='0.1.0',
version='0.2.0',
# fmt: on
zip_safe=False,
)

0 comments on commit b8afe7e

Please sign in to comment.