From d3b6651b2294f9323963d8751b334bc32564dd3c Mon Sep 17 00:00:00 2001
From: Anton Tetov <anton@tetov.se>
Date: Thu, 7 Apr 2022 16:04:54 +0200
Subject: [PATCH] remove py3.11 tests since not release yet, full tag names

---
 .gitlab-ci.yml | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4ede93d..007582e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,7 +33,7 @@ stages:
 
 .quality-template: &quality
   <<: *install-deps
-  image: python:3.9
+  image: python:3.9-slim-bullseye
   stage: quality
   allow_failure: true
 
@@ -52,24 +52,20 @@ run-pre-commit:
 
 python3.9:
   <<: *test
-  image: python:3.9
+  image: python:3.9-slim-bullseye
 
 python3.10:
   <<: *test
-  image: python:3.10
-
-python3.11:
-  <<: *test
-  image: python:3.11
+  image: python:3.10-slim-bullseye
 
 # Publish jobs
 
 publish:
   <<: *install-deps
   stage: publish
-  image: python:3.10
+  image: python:3.10-slim-bullseye
   only:
     - /^v(\d+\.)(\d+\.)(\d+)$/
   script:
     - make build
-    - poetry publish -username=__token__ --password=$PYPI_TOKEN
\ No newline at end of file
+    - poetry publish -username=__token__ --password=$PYPI_TOKEN
-- 
GitLab