forked from pool/python-flake8
Matej Cepl
7e3d2eeac6
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flake8?expand=0&rev=56
32 lines
898 B
Diff
32 lines
898 B
Diff
--- a/setup.cfg
|
|
+++ b/setup.cfg
|
|
@@ -9,7 +9,7 @@ requires-dist =
|
|
configparser; python_version<"3.2"
|
|
functools32; python_version<"3.2"
|
|
entrypoints >= 0.3.0, < 0.4.0
|
|
- pyflakes >= 2.1.0, < 2.2.0
|
|
+ pyflakes >= 2.1.0, <= 2.2.0
|
|
pycodestyle >= 2.5.0, < 2.6.0
|
|
mccabe >= 0.6.0, < 0.7.0
|
|
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -26,7 +26,7 @@ requires = [
|
|
# And in which releases we will update those ranges here:
|
|
# http://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
|
|
"entrypoints >= 0.3.0, < 0.4.0",
|
|
- "pyflakes >= 2.1.0, < 2.2.0",
|
|
+ "pyflakes >= 2.1.0, <= 2.2.0",
|
|
"pycodestyle >= 2.5.0, < 2.6.0",
|
|
"mccabe >= 0.6.0, < 0.7.0",
|
|
]
|
|
--- a/src/flake8.egg-info/requires.txt
|
|
+++ b/src/flake8.egg-info/requires.txt
|
|
@@ -1,5 +1,5 @@
|
|
entrypoints<0.4.0,>=0.3.0
|
|
-pyflakes<2.2.0,>=2.1.0
|
|
+pyflakes<=2.2.0,>=2.1.0
|
|
pycodestyle<2.6.0,>=2.5.0
|
|
mccabe<0.7.0,>=0.6.0
|
|
|