From 6fd0a5f7fbd73d2cc7d7f00c8ee77951174aaf3f Mon Sep 17 00:00:00 2001
From: Florian Spreckelsen <f.spreckelsen@indiscale.com>
Date: Sun, 14 Apr 2024 12:21:10 +0200
Subject: [PATCH] MAINT: Add support for Python 3.12 and experimental support
 for 3.13

---
 .gitlab-ci.yml | 13 +++++++++++++
 CHANGELOG.md   |  2 ++
 tox.ini        |  2 +-
 3 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8478e364..2019df7b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -146,6 +146,19 @@ unittest_py3.11:
   stage: test
   image: python:3.11
   script: *python_test_script
+
+unittest_py3.12:
+  tags: [cached-dind]
+  stage: test
+  image: python:3.12
+  script: *python_test_script
+
+unittest_py3.13:
+  allow_failure: true
+  tags: [cached-dind]
+  stage: test
+  image: python:3.13
+  script: *python_test_script
   
 inttest:
   tags: [docker]
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f285d046..49b2e2c7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added ###
 
+* Support for Python 3.12 and experimental support for 3.13
+
 ### Changed ###
 
 ### Deprecated ###
diff --git a/tox.ini b/tox.ini
index e8d97e5a..e5877743 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py38, py39, py310, py311
+envlist = py38, py39, py310, py311, py312, py313
 skip_missing_interpreters = true
 
 [testenv]
-- 
GitLab