From 34817f87146b16ca37a7918b56bb87d2afbaa7cd Mon Sep 17 00:00:00 2001 From: tr4nt0r <4445816+tr4nt0r@users.noreply.github.com> Date: Wed, 29 Oct 2025 22:34:47 +0100 Subject: [PATCH] Drop support for Python <= 3.10 --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e5a0217..62a33c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "ms_cv", "pydantic==2.*", ] -requires-python = ">=3.8" +requires-python = ">=3.11" readme = "README.md" license = "MIT" keywords = ["xbox one live api"] @@ -20,11 +20,10 @@ classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", - "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", + "Programming Language :: Python :: 3.14", "Topic :: Software Development :: Libraries :: Python Modules", ] dynamic = ["version"]