From 68b83d56ea4fefbb9b756b8dd9c7a7557bad392d Mon Sep 17 00:00:00 2001 From: Felix Oesterle Date: Tue, 8 Jul 2025 08:24:47 +0200 Subject: [PATCH] sys(config): update Python version support in `pyproject.toml` - Drop support for Python 3.7 and 3.8 - Add support for Python 3.13 - Update `requires-python` to `>=3.9` to reflect changes --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e302bdc..27317c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,14 +19,13 @@ classifiers = [ # Indicate who your project is intended for "Intended Audience :: Science/Research", "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)", - "Programming Language :: Python :: 3.7", - "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", + "Programming Language :: Python :: 3.13", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ ]