fix required packages when packaging

See this synergy-service commit for the corresponding change:
https://review.openstack.org/#/c/387931/
2e15008a9e69ec16e5f39df9fe216fd392b006a2

Change-Id: I4a26b5f2f8ec703ce3456fa2568e7233c2d1b310
Sem-Ver: bugfix
This commit is contained in:
Vincent Llorens 2016-10-18 13:52:40 +02:00
parent 2c9649fd66
commit eaf8dfccb2
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
FROM ubuntu:14.04
MAINTAINER Vincent Llorens <vincent.llorens@cc.in2p3.fr>
RUN apt-get update && apt-get install -y software-properties-common
RUN add-apt-repository cloud-archive:liberty
RUN apt-get update \
&& apt-get install -y build-essential \
debhelper \

View File

@ -23,5 +23,5 @@ except ImportError:
pass
setuptools.setup(
setup_requires=['pbr>=1.8', 'setuptools>=17.1'],
setup_requires=['pbr>=1.8', 'setuptools'],
pbr=True)