From 3d5e74016da507a135b87bc63dc07364e340ee48 Mon Sep 17 00:00:00 2001 From: Simon Gerber Date: Tue, 19 Nov 2024 15:57:50 +0100 Subject: [PATCH] Drop support for Python 3.8 which is EOL Python 3.8 has become EOL in October 2024. This commit bumps the supported Python versions for reclass-rs to `>=3.9`. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 14c3a8c..bd0c589 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "reclass-rs" -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython",