From c5ed5f4b9dc457e59282823884d86f7154c1dbc0 Mon Sep 17 00:00:00 2001 From: David Kraus Date: Tue, 10 Oct 2023 17:41:45 -0300 Subject: [PATCH] Fix python version for CI --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 55cde13b..490d036d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,7 +44,7 @@ workflow: bandit: stage: SAST - image: python:3 + image: python:3.11 tags: - faradaytests script: @@ -69,7 +69,7 @@ bandit: - when: on_success flake8: - image: python:3 + image: python:3.11 stage: pre_testing before_script: - pip install flake8 @@ -92,11 +92,11 @@ flake8: tests: extends: .test_base - image: python:3 + image: python:3.11 test_performance: extends: .test_base - image: python:3 + image: python:3.11 stage: post_testing allow_failure: true variables: @@ -106,7 +106,7 @@ test_performance: when: on_success publish_pypi: - image: python:3 + image: python:3.11 stage: publish script: - apt-get update -qy