Package: python-flake8 / 3.6.0-1

0001-Remove-upper-constrains-from-upstream-requirements.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
From 9e609af6caea5996d6b0f7e5a6b9872dc18b3800 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ond=C5=99ej=20Nov=C3=BD?= <onovy@debian.org>
Date: Thu, 3 Nov 2016 21:43:46 +0100
Subject: Remove upper constrains from upstream requirements

=== modified file 'setup.cfg'
--- old/setup.cfg	2018-11-17 17:39:08 +0000
+++ new/setup.cfg	2018-11-17 17:44:47 +0000
@@ -9,9 +9,9 @@
 requires-dist = 
 	enum34; python_version<"3.4"
 	configparser; python_version<"3.2"
-	pyflakes >= 2.0.0, < 2.1.0
-	pycodestyle >= 2.4.0, < 2.5.0
-	mccabe >= 0.6.0, < 0.7.0
+	pyflakes >= 2.0.0
+	pycodestyle >= 2.4.0
+	mccabe >= 0.6.0
 
 [egg_info]
 tag_build = 

=== modified file 'setup.py'
--- old/setup.py	2018-11-17 17:39:08 +0000
+++ new/setup.py	2018-11-17 17:44:37 +0000
@@ -21,9 +21,9 @@
     # http://flake8.pycqa.org/en/latest/faq.html#why-does-flake8-use-ranges-for-its-dependencies
     # And in which releases we will update those ranges here:
     # http://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
-    "pyflakes >= 2.0.0, < 2.1.0",
-    "pycodestyle >= 2.4.0, < 2.5.0",
-    "mccabe >= 0.6.0, < 0.7.0",
+    "pyflakes >= 2.0.0",
+    "pycodestyle >= 2.4.0",
+    "mccabe >= 0.6.0",
     "setuptools >= 30",
 ]