From 61f87c1e109f7271a51e13891c51a1a0a08e3da3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 14 Mar 2022 16:19:15 +0100 Subject: [PATCH] CI: Remove Python 3.{7,8} MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- .gitlab-ci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3a8e4ed..f4a5cc2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,12 +3,6 @@ stages: - lint -.python-3.7: - image: python:3.7 - -.python-3.8: - image: python:3.8 - .python-3.9: image: python:3.9 @@ -34,26 +28,6 @@ stages: - mypyc --ignore-missing-imports ./slixmpp_omemo allow_failure: true -lint-3.7-pylint: - extends: - - .python-3.7 - - .pylint - -lint-3.8-pylint: - extends: - - .python-3.8 - - .pylint - -lint-3.7-mypy: - extends: - - .python-3.7 - - .mypy - -lint-3.8-mypy: - extends: - - .python-3.8 - - .mypy - lint-3.9-pylint: extends: - .python-3.9