File: 0001-Remove-upper-constrains-from-upstream-requirements.patch

package info (click to toggle)
python-flake8 5.0.4-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,208 kB
  • sloc: python: 6,789; sh: 21; makefile: 18
file content (19 lines) | stat: -rw-r--r-- 530 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Index: python-flake8/setup.cfg
===================================================================
--- python-flake8.orig/setup.cfg
+++ python-flake8/setup.cfg
@@ -35,10 +35,10 @@ packages = find:
 package_dir = 
 	=src
 install_requires = 
-	mccabe>=0.7.0,<0.8.0
-	pycodestyle>=2.9.0,<2.10.0
-	pyflakes>=2.5.0,<2.6.0
-	importlib-metadata>=1.1.0,<4.3;python_version<"3.8"
+	mccabe>=0.7.0
+	pycodestyle>=2.9.0
+	pyflakes>=2.5.0
+	importlib-metadata>=1.1.0;python_version<"3.8"
 python_requires = >=3.6.1
 
 [options.packages.find]