From 6d678d0a14cb12bda1f854858cd244fc9652463f Mon Sep 17 00:00:00 2001 From: Konboi Date: Mon, 31 Jul 2023 14:34:32 +0900 Subject: [PATCH] revert --- Pipfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 86960c586..ff075d9c1 100644 --- a/Pipfile +++ b/Pipfile @@ -11,7 +11,10 @@ flake8 = "*" setuptools = ">=30.3.0" setuptools-scm = "*" wheel = "*" -autopep8 = "*" +# The last flake8 version that supports Python 3.6 specifies "pycodestyle >= +# 2.9.0, < 2.10.0". ref: https://github.com/PyCQA/flake8/pull/1633 +# The latest autopep8 specifies "pycodestyle >= 2.10.0". This conflict cannot be resolved. Pin the version to resolve this. +autopep8 = "<=1.5.7" importlib-metadata = "<5.0" isort = "*" more_itertools = "<8.6"