From 564570226c09d021457ebc9eea0e513b24ecc6be Mon Sep 17 00:00:00 2001
From: Andrej Shadura <andrew.shadura@collabora.co.uk>
Date: Mon, 27 Mar 2023 14:10:57 +0200
Subject: [PATCH] Test with Python 3.11 instead of 3.9

Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4cd2932..e5de82f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,8 +3,8 @@ stages:
   - test
   - docker
 
-py39:
-  image: python:3.9
+py310:
+  image: python:3.10
   tags:
     - lightweight
   script:
@@ -15,9 +15,9 @@ py39:
     reports:
       junit: test-results.xml
 
-py310:
+py311:
   allow_failure: true
-  image: python:3.10
+  image: python:3.11
   tags:
     - lightweight
   script:
-- 
GitLab