From 0b1294b6e79191367f9aaecae305ccec832f1c65 Mon Sep 17 00:00:00 2001 From: Ruben van Staveren Date: Wed, 31 Jul 2024 15:50:29 +0200 Subject: [PATCH] Switch to python 3.11 --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0b99040..ee7679c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ --- run pylint: stage: test - image: python:3.9 + image: python:3.11 script: - pip install --upgrade pylint - pylint $(git ls-files '*.py') @@ -10,7 +10,7 @@ run pylint: run flake8: stage: test - image: python:3.9 + image: python:3.11 script: - pip install --upgrade flake8 - flake8 $(git ls-files '*.py') @@ -19,7 +19,7 @@ run flake8: run mypy: stage: test - image: python:3.9 + image: python:3.11 script: - pip install --upgrade mypy - mypy --install-types --non-interactive $(git ls-files '*.py') @@ -28,7 +28,7 @@ run mypy: run tests: stage: test - image: python:3.9 + image: python:3.11 script: - pip install pytest pytest-cov pytest-mock pytest-flask - pip install Flask-HTTPAuth