summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2014-10-27 20:57:55 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2014-10-27 21:03:17 -0700
commit028164a0a477584bc2247dc2ff214f3236cdf1d6 (patch)
treec0755e35fb53a78c02a33704e5575c225abd526f
parentaf3b2bd120877fe996ff4723ffb4bff06a43d692 (diff)
downloadlockfile-028164a0a477584bc2247dc2ff214f3236cdf1d6.tar.gz
Add pbr to dependency list
Currently pbr is breaking markup safe usage in docs, the not so obvious way to fix this is to place pbr in the explicit requirements for pylockfile. Closes-Bug: #1384919 Change-Id: I0bba2f28956aeeb70b1e15f82d6bb67fdbd49118
-rw-r--r--requirements.txt5
-rw-r--r--tox.ini1
2 files changed, 6 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..c81bd8e
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,5 @@
+# The order of packages is significant, because pip processes them in the order
+# of appearance. Changing the order has an impact on the overall integration
+# process, which may cause wedges in the gate later.
+
+pbr>=0.6,!=0.7,<1.0
diff --git a/tox.ini b/tox.ini
index b0a868a..df64d02 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,6 +4,7 @@ envlist = py26,py27,py32,py33,py34
[testenv]
deps = -r{toxinidir}/test-requirements.txt
+ -r{toxinidir}/requirements.txt
commands=nosetests
[testenv:venv]