diff --git a/csvy/__init__.py b/csvy/__init__.py index 1b27db3..081949d 100644 --- a/csvy/__init__.py +++ b/csvy/__init__.py @@ -1,7 +1,7 @@ """ Python reader/writer for CSV files with YAML header information. """ -__version__ = "0.2.0" +__version__ = "0.2.1" from .readers import ( # noqa: F401 read_header, read_metadata, diff --git a/pyproject.toml b/pyproject.toml index bdeea9e..1c4d1bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycsvy" -version = "0.2.0" +version = "0.2.1" description = "Python reader/writer for CSV files with YAML header information." authors = ["Diego Alonso Álvarez "] license = "BSD-3-Clause" diff --git a/setup.cfg b/setup.cfg index 2d3759e..5812b18 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,15 @@ +[bumpversion] +current_version = 0.2.1 +commit = True +tag = True + [aliases] test = pytest [tool:pytest] -addopts = +addopts = -v --flake8 --mypy -p no:warnings - --cov=csvy --cov-report=html:reports/coverage/html + --cov=csvy --cov-report=html:reports/coverage/html --cov-report=xml:reports/coverage/coverage.xml --doctest-modules --ignore=docs/ @@ -15,7 +20,7 @@ max-line-length = 88 max-line-length = 88 exclude = venv/,.eggs/ per-file-ignores = __init__.py:F401 -extend-ignore = +extend-ignore = E203, [mypy] @@ -26,18 +31,13 @@ strict_optional = False ignore_errors = True [isort] -known_third_party = +known_third_party = line_length = 88 multi_line_output = 3 include_trailing_comma = true -[bumpversion] -current_version = 0.2.0 -commit = True -tag = True - [bumpversion:file:setup.cfg] [bumpversion:file:pyproject.toml] -[bumpversion:file:csvy/__init__.py] \ No newline at end of file +[bumpversion:file:csvy/__init__.py]