From 4d171e256a0c61c567e4b81f4b376154c6b38065 Mon Sep 17 00:00:00 2001 From: Luca Weiss <luca@z3ntu.xyz> Date: Tue, 23 Feb 2021 09:30:41 +0100 Subject: [PATCH] CI: upgrade to Ubuntu 18.04 Latest pylint doesn't support Python 3.5 (latest available on 16.04) anymore. --- .travis.yml | 4 ++-- scripts/ci/install-check-deps.sh | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 933f7c5f..442bffc6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,10 +6,10 @@ services: language: c before_install: - - docker pull ubuntu:16.04 + - docker pull ubuntu:18.04 script: - - docker run -v "$(pwd):/var/razer" ubuntu:16.04 /bin/sh -c "cd /var/razer/ && ./scripts/ci/ci.sh" + - docker run -v "$(pwd):/var/razer" ubuntu:18.04 /bin/sh -c "cd /var/razer/ && ./scripts/ci/ci.sh" notifications: webhooks: diff --git a/scripts/ci/install-check-deps.sh b/scripts/ci/install-check-deps.sh index b0de8d54..b837d8af 100755 --- a/scripts/ci/install-check-deps.sh +++ b/scripts/ci/install-check-deps.sh @@ -6,7 +6,6 @@ apt-get -y install \ python3-pip pip3 install autopep8 -pip3 install 'isort<5' # isort 5+ requires Python 3.6+ pip3 install pylint # pylint errors with 1.8+ on pylib/tests/integration_tests/test_device_manager.py about the missing 'coverage' module -- GitLab