From 0c50047f74ed5f79227e24b8a108bc0fc9570667 Mon Sep 17 00:00:00 2001 From: Elijah Andrews Date: Fri, 18 Mar 2022 12:45:41 -0400 Subject: [PATCH] version 0.2.1 --- README.rst | 4 ++++ flake8_blind_except.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 989fcdd..8ceabc4 100644 --- a/README.rst +++ b/README.rst @@ -69,6 +69,10 @@ Tests can be run with ``pytest --doctest-modules flake8_blind_except.py``. Changes ------- +0.2.1 - 2022-03-08 +`````````````````` +* Remove setuptools from install_requires (#8) + 0.2.0 - 2021-01-07 `````````````````` * B902 error added for cases where a blind ``Exception`` is caught. diff --git a/flake8_blind_except.py b/flake8_blind_except.py index f9ed5ad..295d07b 100644 --- a/flake8_blind_except.py +++ b/flake8_blind_except.py @@ -4,7 +4,7 @@ import pep8 as pycodestyle import re -__version__ = '0.2.0' +__version__ = '0.2.1' BLIND_EXCEPT_REGEX = re.compile(r'(^[ \t]*except(.*\b(Base)?Exception\b.*)?:)') # noqa