From 4b252d23bd1d6aaa074bf286c5236c5fead21a7d Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Thu, 24 Mar 2016 11:28:33 -0400 Subject: [PATCH] Remove python-ironicclient from setup_requires The list of packages in setup_requires are installed in order to install the code from the current package, and are not necessarily left around as a runtime dependency. The python-ironicclient code should not be needed to install ironic-ui, and the runtime dependency is correctly listed in requirements.txt. Change-Id: Ie24affbc2f5b5da479d60b92762790574b6e1beb Closes-Bug: #1561581 Signed-off-by: Doug Hellmann --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d5c114c4..d07efa43 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,5 @@ except ImportError: pass setuptools.setup( - setup_requires=['pbr>=1.8', - 'python-ironicclient>=1.1'], + setup_requires=['pbr>=1.8'], pbr=True)