From 99ec6f296ebb84f3555b7599da2f29042d30ced9 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 24 Mar 2026 20:26:34 +0100 Subject: [PATCH] [mod] drop support for Python releases older than 4 years (#5895) The end-of-life (EOL) of a Python release is reached after 5 years, with the last three years dedicated to security fixes. [1] Unfortunately, this doesn't apply to common libraries (dependencies): bug fixes are often only included in major releases, and minor releases with corresponding security fixes are rarely offered. To make matters worse, these dependencies often prematurely discontinue their support for older Python releases (because, for example, they want/need to use new Python features). If we want to offer secure software, we are faced with the dilemma of either supporting old Python releases and accepting that there are security bugs in the dependencies, or ending support for older Python versions before the actual EOL of the Python release. [1] https://devguide.python.org/versions/ Closes: https://github.com/searxng/searxng/issues/5869 Signed-off-by: Markus Heiser --- .github/workflows/integration.yml | 1 - mise.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 3e80bfaba..9582b2349 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -27,7 +27,6 @@ jobs: strategy: matrix: python-version: - - "3.10" - "3.11" - "3.12" - "3.13" diff --git a/mise.toml b/mise.toml index 65efee5bd..70b31305e 100644 --- a/mise.toml +++ b/mise.toml @@ -1,6 +1,6 @@ [tools] # minimal version we support -python = "3.10" +python = "3.11" node = "25" go = "1.24.5" shellcheck = "0.11.0"