From 983a52a6d5c086db7ea0a8103234e2576d694adb Mon Sep 17 00:00:00 2001 From: Chenxiong Qi Date: Jun 25 2018 04:28:24 +0000 Subject: Do not restrict argparse version This change would benefit rpkg itself to proivsion environment to run tests, where latest version will be installed from PyPI, and the RPM package that it works well with older version of python-argparse in el6. Signed-off-by: Chenxiong Qi --- diff --git a/setup.py b/setup.py index dbdbb3f..0479ee4 100755 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ if ver[0] <= 2 and ver[1] < 7: install_requires.remove('GitPython') install_requires += [ 'GitPython<1.0.0', - 'argparse==1.4.0', + 'argparse', ] tests_require += [ 'unittest2'