From 5a5ab62b4d3f92d9eb3f7b789702e828f0c1c53d Mon Sep 17 00:00:00 2001
From: Eduardo Almeida <enmsa@outlook.pt>
Date: Wed, 13 Dec 2023 13:11:47 +0000
Subject: [PATCH] ci: Use full images on Python jobs

---
 utils/tests/gitlab-ci-code-linting.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/utils/tests/gitlab-ci-code-linting.yml b/utils/tests/gitlab-ci-code-linting.yml
index 993a3a3acbe..b90d5a76e01 100644
--- a/utils/tests/gitlab-ci-code-linting.yml
+++ b/utils/tests/gitlab-ci-code-linting.yml
@@ -136,7 +136,6 @@ cmake-format:
 # Check Python format
 .python-format:
   stage: .pre
-  image: python:slim
   before_script:
     - pip install black isort
   script:
@@ -146,8 +145,8 @@ cmake-format:
 
 python-format-latest:
   extends: .python-format
-  image: python:slim
+  image: python:latest
 
 python-format-3.6:
   extends: .python-format
-  image: python:3.6-slim
+  image: python:3.6