summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-05-31 04:02:04 +0000
committerGerrit Code Review <review@openstack.org>2013-05-31 04:02:04 +0000
commitc539b89272f7691d9499934bacea85cfd30674e2 (patch)
tree201594e76f96f452daea5c017856343d09de4f93 /doc
parent6516c31571333db83d8a7860667c9b180732f003 (diff)
parent2bc22ef6f7e21701188eb97376d15c8f57a56881 (diff)
downloadkeystone-c539b89272f7691d9499934bacea85cfd30674e2.tar.gz
keystone-c539b89272f7691d9499934bacea85cfd30674e2.tar.xz
keystone-c539b89272f7691d9499934bacea85cfd30674e2.zip
Merge " Rename requires files to standard names."
Diffstat (limited to 'doc')
-rw-r--r--doc/source/installing.rst2
-rw-r--r--doc/source/setup.rst8
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/installing.rst b/doc/source/installing.rst
index f5380f24..48162153 100644
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -49,7 +49,7 @@ Clone the keystone repository::
Install the dependencies to run keystone::
- sudo pip install -r tools/pip-requires
+ sudo pip install -r requirements.txt
And at this point, you should have all the pieces you need to run keystone
installed on your system. The following commands should be available on the
diff --git a/doc/source/setup.rst b/doc/source/setup.rst
index 35727222..cc6762c8 100644
--- a/doc/source/setup.rst
+++ b/doc/source/setup.rst
@@ -66,8 +66,8 @@ Installing dependencies
Keystone maintains two lists of dependencies::
- tools/pip-requires
- tools/test-requires
+ requirements.txt
+ test-requirements.txt
The first is the list of dependencies needed for running keystone, the second list includes dependencies used for active development and testing of keystone itself.
@@ -124,10 +124,10 @@ If you want to run keystone outside of a virtualenv, you can install the
dependencies directly into your system from the requires files::
# Install the dependencies for running keystone
- $ pip install -r tools/pip-requires
+ $ pip install -r requirements.txt
# Install the dependencies for developing, testing, and running keystone
- $ pip install -r tools/test-requires
+ $ pip install -r test-requirements.txt
# Use python setup.py to link Keystone into python's site-packages
$ python setup.py develop