From a82e53121ad27e593d3e9edbe6f1bc0d4aeb366d Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Thu, 23 May 2013 09:53:39 +1000 Subject: [PATCH] Fix install_venv.py requirements file I missed this in https://review.openstack.org/#/c/29876/ (but Gordon noticed) Change-Id: Ie00cae414ae44bbd258910a2628174487c9756e3 --- tools/install_venv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/install_venv.py b/tools/install_venv.py index 7d690942..a11e7847 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -56,8 +56,8 @@ def main(argv): if os.environ.get('venv'): venv = os.environ['venv'] - pip_requires = os.path.join(root, 'tools', 'pip-requires') - test_requires = os.path.join(root, 'tools', 'test-requires') + pip_requires = os.path.join(root, 'requirements.txt') + test_requires = os.path.join(root, 'test-requirements.txt') py_version = "python%s.%s" % (sys.version_info[0], sys.version_info[1]) project = 'Ceilometerclient' install = install_venv.InstallVenv(root, venv, pip_requires, test_requires,