Fix requirement version pinning

Previously, we used the "~=" operator in the requirements. It turns
out that this operator is not understood by pybuild, thus making the
packaging fail for Ubuntu 14.04.

We now resort to dependency pinning using a combination of >= and <

Change-Id: Icfe2cd2e8aa5dc2d48582ad2b43c05085309949a
This commit is contained in:
Vincent Llorens 2016-09-22 16:30:40 +02:00
parent 07b77461a2
commit d8ff725460

View File

@ -2,11 +2,11 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
pbr~=1.8
pbr>=1.8,<1.9
eventlet~=0.17
oslo.config~=2.4
python-dateutil~=2.4
eventlet>=0.17,<0.18
oslo.config>=2.4,<2.5
python-dateutil>=2.4,<2.5
# Packages not available as system packages (rpm or deb)
tabulate~=0.7.2
tabulate>=0.7.2,<0.8