From 7c683baec251feaf9f0eeeda201ff44c4ab20608 Mon Sep 17 00:00:00 2001 From: Christian Sachs Date: Sun, 11 Sep 2022 04:10:23 +0200 Subject: [PATCH] Version 5.0.4 --- pflake8/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pflake8/__init__.py b/pflake8/__init__.py index e902342..bc01950 100644 --- a/pflake8/__init__.py +++ b/pflake8/__init__.py @@ -1,6 +1,6 @@ """ pyproject-flake8 (`pflake8`), a monkey patching wrapper to connect flake8 with pyproject.toml configuration """ # noqa -__version__ = '5.0.3a1' +__version__ = '5.0.4' import ast import configparser diff --git a/pyproject.toml b/pyproject.toml index c358c67..995efc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ license = { file = "LICENSE" } classifiers = [] dependencies = [ "tomli; python_version < '3.11'", - "flake8 >= 5.0.3" + "flake8 == 5.0.4" ] [project.urls]