summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/utils.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/ryu/utils.py b/ryu/utils.py
index d0a443df..dd220849 100644
--- a/ryu/utils.py
+++ b/ryu/utils.py
@@ -90,10 +90,6 @@ def parse_requirements(requirements_files=['requirements.txt',
# -f lines are for index locations, and don't get used here
elif re.match(r'\s*-f\s+', line):
pass
- # argparse is part of the standard library starting with 2.7
- # adding it to the requirements list screws distro installs
- elif line == 'argparse' and sys.version_info >= (2, 7):
- pass
else:
requirements.append(line)