From 43c8289c627e6044c1260447133ee33bccd7cde7 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Sat, 18 Feb 2012 00:22:51 -0800 Subject: [PATCH] Update tools/install_venv.py --- tools/install_venv.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tools/install_venv.py b/tools/install_venv.py index 149f996a..d781b7ea 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -100,15 +100,6 @@ def install_dependencies(venv=VENV): run_command([venv_tool, 'pip', 'install', '-E', venv, '-r', PIP_REQUIRES], redirect_output=False) - # Tell the virtual env how to "import keystone" - - for version in ['python2.7', 'python2.6']: - pth = os.path.join(venv, "lib", version, "site-packages") - if os.path.exists(pth): - pthfile = os.path.join(pth, "keystone.pth") - f = open(pthfile, 'w') - f.write("%s\n" % ROOT) - def print_help(): help = """