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 <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2016-03-24 11:28:33 -04:00
parent 7842f3e1fc
commit 4b252d23bd
1 changed files with 1 additions and 2 deletions

View File

@ -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)