Release 5.0.0

This commit is contained in:
Anthony Sottile 2022-07-30 17:00:41 -04:00
parent a826649b41
commit c7c6218e58
6 changed files with 87 additions and 5 deletions

View file

@ -17,7 +17,7 @@ from typing import Type
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
__version__ = "4.0.1"
__version__ = "5.0.0"
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
_VERBOSITY_TO_LOG_LEVEL = {

View file

@ -27,7 +27,7 @@ VALID_CODE = re.compile("^[A-Z]{1,3}[0-9]{0,3}$", re.ASCII)
FLAKE8_GROUPS = frozenset(("flake8.extension", "flake8.report"))
BANNED_PLUGINS = {
"flake8-colors": "4.1",
"flake8-colors": "5.0",
"flake8-per-file-ignores": "3.7",
}