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 40 41 42 43 44
|
From 8e6ad774b40ba028765fdf29abe27e8809d5c40f 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
---
setup.cfg | 6 +++---
setup.py | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/setup.cfg b/setup.cfg
index 9c4111e..c3d8925 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -8,9 +8,9 @@ universal = 1
requires-dist =
enum34; python_version<"3.4"
configparser; python_version<"3.2"
- pyflakes >= 0.8.1, != 1.2.0, != 1.2.1, != 1.2.2, < 1.4.0
- pycodestyle >= 2.0.0, < 2.3.0
- mccabe >= 0.5.0, < 0.6.0
+ pyflakes >= 0.8.1, != 1.2.0, != 1.2.1, != 1.2.2
+ pycodestyle >= 2.0.0
+ mccabe >= 0.5.0
[egg_info]
tag_build =
diff --git a/setup.py b/setup.py
index dc346e1..5642186 100644
--- a/setup.py
+++ b/setup.py
@@ -15,9 +15,9 @@ import flake8
tests_require = ['mock', 'pytest']
requires = [
- "pyflakes >= 0.8.1, != 1.2.0, != 1.2.1, != 1.2.2, < 1.4.0",
- "pycodestyle >= 2.0.0, < 2.3.0",
- "mccabe >= 0.5.0, < 0.6.0",
+ "pyflakes >= 0.8.1, != 1.2.0, != 1.2.1, != 1.2.2",
+ "pycodestyle >= 2.0.0",
+ "mccabe >= 0.5.0",
]
if sys.version_info < (3, 4):
|