From 033c20c5ccb1eccddcbd5c80a61c18b9d5983100 Mon Sep 17 00:00:00 2001
From: Bryan Brancotte <bryan.brancotte@pasteur.fr>
Date: Tue, 9 Jan 2024 15:08:23 +0100
Subject: [PATCH] accept 3.8

---
 .gitlab-ci.yml | 5 ++++-
 setup.cfg      | 6 ++++--
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 311fbd2..36d7832 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,9 +8,12 @@ test:
   parallel:
     matrix:
       - PYTHON_VERSION: [
+          "3.8-slim",
           "3.9-slim",
           "3.10-slim",
           "3.11-slim",
+          "3.12-slim",
+          "latest-slim",
         ]
 
 
@@ -18,7 +21,7 @@ test:
 upload:
   stage: deploy
   needs: ['test', ]
-  image: python:3.11
+  image: python:latest
   script:
     - pip install -r requirements-dev.txt
     - python setup.py sdist
diff --git a/setup.cfg b/setup.cfg
index e4d5ec8..3ad0c39 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 [metadata]
 name = django-kubernetes-probes
-version = 1.0
+version = 1.0.1
 description = A Django app to expose probes for kubernetes
 long_description = file: README.rst
 url = https://www.example.com/
@@ -17,6 +17,8 @@ classifiers =
     Programming Language :: Python
     Programming Language :: Python :: 3
     Programming Language :: Python :: 3 :: Only
+    Programming Language :: Python :: 3.8
+    Programming Language :: Python :: 3.9
     Programming Language :: Python :: 3.10
     Programming Language :: Python :: 3.11
     Programming Language :: Python :: 3.12
@@ -26,6 +28,6 @@ classifiers =
 [options]
 include_package_data = true
 packages = find:
-python_requires = >=3.10
+python_requires = >=3.8
 install_requires =
     Django >= X.Y  # Replace "X.Y" as appropriate
\ No newline at end of file
-- 
GitLab