From ceeaccf9e0524a6d66ba3bbe7c96d509dca0d640 Mon Sep 17 00:00:00 2001 From: Dominic Davis-Foster Date: Thu, 19 May 2022 23:04:12 +0100 Subject: [PATCH] Bump version v0.0.22 -> v0.0.23 --- .bumpversion.cfg | 2 +- .github/workflows/conda_ci.yml | 2 +- README.rst | 2 +- doc-source/index.rst | 2 +- pyproject.toml | 2 +- repo_helper.yml | 2 +- setup.cfg | 2 +- whey/__init__.py | 2 +- whey/utils.py | 1 + 9 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4109dd4..dff227a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.22 +current_version = 0.0.23 commit = True tag = True diff --git a/.github/workflows/conda_ci.yml b/.github/workflows/conda_ci.yml index 99d163c..f32dfe8 100644 --- a/.github/workflows/conda_ci.yml +++ b/.github/workflows/conda_ci.yml @@ -55,7 +55,7 @@ jobs: - name: "Install package" run: | - $CONDA/bin/conda install -c file://$(pwd)/conda-bld whey=0.0.22=py_1 -y || exit 1 + $CONDA/bin/conda install -c file://$(pwd)/conda-bld whey=0.0.23=py_1 -y || exit 1 - name: "Run Tests" run: | diff --git a/README.rst b/README.rst index 5b35328..c9e07a3 100644 --- a/README.rst +++ b/README.rst @@ -119,7 +119,7 @@ See `the documentation`_ for configuration_ and usage_ information. .. |language| image:: https://img.shields.io/github/languages/top/repo-helper/whey :alt: GitHub top language -.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/whey/v0.0.22 +.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/whey/v0.0.23 :target: https://github.com/repo-helper/whey/pulse :alt: GitHub commits since tagged version diff --git a/doc-source/index.rst b/doc-source/index.rst index 03ccceb..2867b3b 100644 --- a/doc-source/index.rst +++ b/doc-source/index.rst @@ -135,7 +135,7 @@ whey :alt: GitHub top language .. |commits-since| github-shield:: - :commits-since: v0.0.22 + :commits-since: v0.0.23 :alt: GitHub commits since tagged version .. |commits-latest| github-shield:: diff --git a/pyproject.toml b/pyproject.toml index be9e4c5..f46c32a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "whey" -version = "0.0.22" +version = "0.0.23" description = "A simple Python wheel builder for simple projects." readme = "README.rst" requires-python = ">=3.6.1" diff --git a/repo_helper.yml b/repo_helper.yml index 4ea19a1..97802b1 100644 --- a/repo_helper.yml +++ b/repo_helper.yml @@ -7,7 +7,7 @@ email: 'dominic@davis-foster.co.uk' username: 'repo-helper' assignee: 'domdfcoding' primary_conda_channel: "domdfcoding" -version: '0.0.22' +version: '0.0.23' license: 'MIT' short_desc: 'A simple Python wheel builder for simple projects.' diff --git a/setup.cfg b/setup.cfg index 87648b5..2344908 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,7 +8,7 @@ [metadata] name = whey -version = 0.0.22 +version = 0.0.23 author = Dominic Davis-Foster author_email = dominic@davis-foster.co.uk license = MIT License diff --git a/whey/__init__.py b/whey/__init__.py index 3317b86..fa732fe 100644 --- a/whey/__init__.py +++ b/whey/__init__.py @@ -32,7 +32,7 @@ __author__: str = "Dominic Davis-Foster" __copyright__: str = "2021 Dominic Davis-Foster" __license__: str = "MIT License" -__version__: str = "0.0.22" +__version__: str = "0.0.23" __email__: str = "dominic@davis-foster.co.uk" __all__ = ["build_sdist", "build_wheel"] diff --git a/whey/utils.py b/whey/utils.py index 6c50ce1..165cacf 100644 --- a/whey/utils.py +++ b/whey/utils.py @@ -51,6 +51,7 @@ class WheyTracebackHandler(ConfigTracebackHandler): class WheyBackendTBHandler(WheyTracebackHandler): + def __init__(self, exception: BaseException = SystemExit(1)): super().__init__(exception)