Don't require argparse for Python >= 3.2

argparse was included in the stdlib of Python in version 3.2.

Signed-off-by: Jelle van der Waa <jelle@vdwaa.nl>
pull/95/head
Jelle van der Waa 2019-04-04 14:40:45 +02:00 committed by Andrew Krasichkov
parent 340f715f00
commit 8c492ebaba
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ setup(
install_requires=[
'pyparsing>=1.5.5',
'cached-property>=1.2.0',
'argparse>=1.4.0',
'argparse>=1.4.0;python_version<"3.2"',
'six>=1.1.0',
'Jinja2>=2.8',
'ConfigArgParse>=0.11.0'