From 028164a0a477584bc2247dc2ff214f3236cdf1d6 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Mon, 27 Oct 2014 20:57:55 -0700 Subject: [PATCH] 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 --- requirements.txt | 5 +++++ tox.ini | 1 + 2 files changed, 6 insertions(+) create mode 100644 requirements.txt 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]