[libvirt] [python PATCH 0/3] travis: misc fixes to build

Fix the travis build which has been broken for a while Daniel P. Berrangé (3): travis: remove python 2.6 and 3.6 from build matrix travis: switch from trusty to xenial dist travis: add testing of 5.0.0 release .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 2.20.1

The lxml package that we download with pip no longer supports either of these versions of python. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8405bee..0e9c834 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,7 @@ language: python os: linux python: - - 2.6 - 2.7 - - 3.2 - 3.6 env: -- 2.20.1

The trusty gnutls version is too old to support modern libvirt Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 0e9c834..cf192c5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python os: linux +dist: xenial python: - 2.7 -- 2.20.1

Update to test against very latest release. Since we dropped two python versions, we can afford to add new libvirt version without dropping a previous one. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index cf192c5..d194f37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ env: - LIBVIRT=2.0.0 EXT=xz - LIBVIRT=3.6.0 EXT=xz - LIBVIRT=4.5.0 EXT=xz + - LIBVIRT=5.0.0 EXT=xz install: - sudo apt-get -qqy build-dep libvirt libxml2-dev -- 2.20.1

On 01/16/2019 05:25 AM, Daniel P. Berrangé wrote:
Fix the travis build which has been broken for a while
Daniel P. Berrangé (3): travis: remove python 2.6 and 3.6 from build matrix travis: switch from trusty to xenial dist travis: add testing of 5.0.0 release
.travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Cole Robinson <crobinso@redhat.com> - Cole
participants (2)
-
Cole Robinson
-
Daniel P. Berrangé