summaryrefslogtreecommitdiff
path: root/tools/install_venv.py
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-06-03 18:42:06 -0400
committerMonty Taylor <mordred@inaugust.com>2013-06-03 18:44:20 -0400
commitb11db36f471a854326cb23023332381664b09cbf (patch)
tree8c405f0fad3a7151feb9a0284bc051325d6b9d96 /tools/install_venv.py
parentfc930eb91d5e113f20380cf8dbefbde1c8df972d (diff)
downloadtrove-b11db36f471a854326cb23023332381664b09cbf.tar.gz
Updated to use normal requirements names.
Change-Id: I20545a3250c7db826b5c9133b8a94e3a8b2a3dbf
Diffstat (limited to 'tools/install_venv.py')
-rwxr-xr-xtools/install_venv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index b05a3f87..4debd4c8 100755
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -31,8 +31,8 @@ import sys
ROOT = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
VENV = os.path.join(ROOT, '.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])