Skip to content

Commit

Permalink
argparse only required for 2.6 #240
Browse files Browse the repository at this point in the history
  • Loading branch information
sn6uv committed Jun 14, 2015
1 parent c9f03f2 commit 761dec9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,13 @@

# General Requirements
INSTALL_REQUIRES += ['sympy==0.7.6', 'django >= 1.6, < 1.7', 'ply>=3.6',
'mpmath>=0.19', 'argparse', 'python-dateutil', 'colorama',
'mpmath>=0.19', 'python-dateutil', 'colorama',
'interruptingcow']

if sys.version_info < (2, 7):
# Python 2.6 support: argparse part of stdlib since 2.7
INSTALL_REQUIRES += ['argparse']

# if sys.platform == "darwin":
# INSTALL_REQUIRES += ['readline']

Expand Down

0 comments on commit 761dec9

Please sign in to comment.