summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2015-07-30 15:06:39 -0500
committerBrant Knudson <bknudson@us.ibm.com>2015-07-30 15:08:19 -0500
commit1e4d8836840622434230055e054666e164e10d14 (patch)
tree3b0e89a73577f183b4199072d69035eb13ff30f2
parent89402a71776a02c69b67fc14452b82a9a9d85ac0 (diff)
downloadpbr-1e4d8836840622434230055e054666e164e10d14.tar.gz
Fix docs for environment markers in extras1.4.0
The docs for environment markers in setup.cfg [extras] had a couple of issues. 1) There was a space after the package name. 2) python_environment was used where python_version is the marker. Change-Id: Idbc72c45ae240356ca39eeba6db754f56c6a0f23
-rw-r--r--doc/source/index.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst
index ac746d7..4279041 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -159,10 +159,10 @@ constraints on the environment, you can use::
[extras]
security =
aleph
- bet :python_environment=='3.2'
- gimel :python_environment=='2.7'
+ bet:python_version=='3.2'
+ gimel:python_version=='2.7'
testing =
- quux :python_environment=='2.7'
+ quux:python_version=='2.7'
long_description
----------------