[Python-modules-commits] [python-flake8] 03/10: Remove upper constrains from upstream requirements
Ondřej Nový
onovy at moszumanska.debian.org
Sat Apr 8 16:02:30 UTC 2017
This is an automated email from the git hooks/post-receive script.
onovy pushed a commit to branch master
in repository python-flake8.
commit b5475f8925a960108ce9acf63517c63d445b2b1d
Author: Ondřej Nový <onovy at debian.org>
Date: Thu Nov 3 21:43:46 2016 +0100
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 de6418f..913fd74 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 >= 1.5.0, < 1.6.0
- pycodestyle >= 2.0.0, < 2.4.0
- mccabe >= 0.6.0, < 0.7.0
+ pyflakes >= 1.5.0
+ pycodestyle >= 2.0.0
+ mccabe >= 0.6.0
[egg_info]
tag_build =
diff --git a/setup.py b/setup.py
index 5a40d9b..73e00c4 100644
--- a/setup.py
+++ b/setup.py
@@ -17,9 +17,9 @@ tests_require = ['mock >= 2.0.0', 'pytest']
# NOTE(sigmavirus24): When updating these requirements, update them in
# setup.cfg as well.
requires = [
- "pyflakes >= 1.5.0, < 1.6.0",
- "pycodestyle >= 2.0.0, < 2.4.0",
- "mccabe >= 0.6.0, < 0.7.0",
+ "pyflakes >= 1.5.0",
+ "pycodestyle >= 2.0.0",
+ "mccabe >= 0.6.0",
]
if sys.version_info < (3, 4):
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-flake8.git
More information about the Python-modules-commits
mailing list