diff -Nru flake8-blind-except-0.2.0/debian/changelog flake8-blind-except-0.2.1/debian/changelog --- flake8-blind-except-0.2.0/debian/changelog 2021-09-19 18:12:36.000000000 +0000 +++ flake8-blind-except-0.2.1/debian/changelog 2022-04-04 15:17:01.000000000 +0000 @@ -1,3 +1,16 @@ +flake8-blind-except (0.2.1-1) unstable; urgency=medium + + * Team upload. + + [ Jose Luis Rivero ] + * Move package under the scope of python-team + + [ Jochen Sprickerhof ] + * New upstream version 0.2.1 + * Drop duplicate build dependency + + -- Jochen Sprickerhof Mon, 04 Apr 2022 17:17:01 +0200 + flake8-blind-except (0.2.0-2) unstable; urgency=medium * Source only upload for migration to testing diff -Nru flake8-blind-except-0.2.0/debian/control flake8-blind-except-0.2.1/debian/control --- flake8-blind-except-0.2.0/debian/control 2021-08-22 19:57:44.000000000 +0000 +++ flake8-blind-except-0.2.1/debian/control 2022-04-04 15:16:11.000000000 +0000 @@ -1,16 +1,16 @@ Source: flake8-blind-except -Maintainer: Jose Luis Rivero +Maintainer: Debian Python Team +Uploaders: Jose Luis Rivero Section: python Priority: optional Build-Depends: debhelper-compat (= 13), - dh-python, dh-sequence-python3, python3-all, python3-flake8, python3-setuptools Standards-Version: 4.6.0 -Vcs-Browser: https://salsa.debian.org/jrivero-guest/flake8-blind-except -Vcs-Git: https://salsa.debian.org/jrivero-guest/flake8-blind-except.git +Vcs-Browser: https://salsa.debian.org/python-team/packages/flake8-blind-except +Vcs-Git: https://salsa.debian.org/python-team/packages/flake8-blind-except.git Rules-Requires-Root: no Homepage: https://github.com/elijahandrews/flake8-blind-except diff -Nru flake8-blind-except-0.2.0/flake8_blind_except.py flake8-blind-except-0.2.1/flake8_blind_except.py --- flake8-blind-except-0.2.0/flake8_blind_except.py 2021-01-07 19:30:39.000000000 +0000 +++ flake8-blind-except-0.2.1/flake8_blind_except.py 2022-03-18 16:45:41.000000000 +0000 @@ -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 diff -Nru flake8-blind-except-0.2.0/README.rst flake8-blind-except-0.2.1/README.rst --- flake8-blind-except-0.2.0/README.rst 2021-01-07 19:30:39.000000000 +0000 +++ flake8-blind-except-0.2.1/README.rst 2022-03-18 16:45:41.000000000 +0000 @@ -5,7 +5,7 @@ As of `pycodestyle 2.1.0 `_, "E722 do not use bare except, specify exception instead" is built-in. However, bare ``Exception`` and ``BaseException`` are still allowed. This extension flags them as `B902`. -Using ``except`` without explicitly specifying which exceptions to catch is generally considered bad practice, since it catches system signals like ``SIGINT``. You probably want to handle system interrupts differently than exceptions occuring in your code. +Using ``except`` without explicitly specifying which exceptions to catch is generally considered bad practice, since it catches system signals like ``SIGINT``. You probably want to handle system interrupts differently than exceptions occurring in your code. It's also usually better style to have many small ``try``-``except`` blocks catching specific exceptions instead of a giant ``try:`` block with a catch-all ``except:`` at the bottom. It's also nicer to your fellow programmers to be a bit more specific about what exceptions they can expect in specific parts of the code, and what the proper course of action is when they occur. @@ -69,6 +69,10 @@ 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 -Nru flake8-blind-except-0.2.0/setup.py flake8-blind-except-0.2.1/setup.py --- flake8-blind-except-0.2.0/setup.py 2021-01-07 19:30:39.000000000 +0000 +++ flake8-blind-except-0.2.1/setup.py 2022-03-18 16:45:41.000000000 +0000 @@ -22,7 +22,6 @@ version=get_version(), author='Elijah Andrews', author_email='elijahcandrews@gmail.com', - install_requires=['setuptools'], entry_points={ 'flake8.extension': [ 'B90 = flake8_blind_except:check_blind_except'