From aba1d18b62e45ba1f4fbb64896c384dca5291cc1 Mon Sep 17 00:00:00 2001 From: Satoshi Kobayashi Date: Wed, 31 Jul 2013 10:36:53 +0900 Subject: [PATCH] The trick for installing argparse is deleted This trick is contained in oslo.config. Signed-off-by: Satoshi Kobayashi Signed-off-by: FUJITA Tomonori --- ryu/utils.py | 4 ---- 1 file changed, 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)