summaryrefslogtreecommitdiff
path: root/mise.toml
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2026-03-24 20:26:34 +0100
committerGitHub <noreply@github.com>2026-03-24 20:26:34 +0100
commit99ec6f296ebb84f3555b7599da2f29042d30ced9 (patch)
tree4af73d94316fc68520cc4ee157845f15e2c0d0c0 /mise.toml
parent054174a19d035174598308ae0cf12f076a13043e (diff)
[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 <markus.heiser@darmarit.de>
Diffstat (limited to 'mise.toml')
-rw-r--r--mise.toml2
1 files changed, 1 insertions, 1 deletions
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"