@@ -93,6 +93,21 @@ END
}
);
+ target_editfile($ho,
+ "$builddir/requirements/upper-constraints.txt",
+ sub {
+ while (<EI>) {
+ # Ignore libvirt-python requirement and install latest,
+ # otherwise it's not going to work with latest libvirt
+ # installed by osstest.
+ if (m/^libvirt-python===.*$/) {
+ next;
+ }
+ print EO or die $!;
+ }
+ }
+ );
+
# Package python-systemd does not exist in Debian installed by osstest
target_editfile($ho, "$builddir/devstack/files/debs/general", sub {
while (<EI>) {