summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSatoshi Kobayashi <satoshi-k@stratosphere.co.jp>2013-07-31 10:36:53 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2013-07-31 10:57:54 +0900
commitaba1d18b62e45ba1f4fbb64896c384dca5291cc1 (patch)
treec9d58b66c5dddb0d1cfff417dad6ecc5baf809fa
parentee79a1a7c74b9afc9c6e29cdce48bfe88ac63df4 (diff)
The trick for installing argparse is deleted
This trick is contained in oslo.config. Signed-off-by: Satoshi Kobayashi <satoshi-k@stratosphere.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-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)