From 3040cd70b51206066363a0db90ef5be6cf55ecd0 Mon Sep 17 00:00:00 2001 From: "bj00rn@users.noreply.github.com" Date: Mon, 18 Nov 2024 23:41:43 +0100 Subject: [PATCH] fix: drop support for python 3.10 BREAKING CHANGE: drop support for python 3.11 --- .github/workflows/ci.yml | 1 - setup.cfg | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 545c00d..1551aea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,6 @@ jobs: strategy: matrix: python: - - "3.10" # oldest Python supported by PSF - "3.11" - "3.12" # newest Python that is stable platform: diff --git a/setup.cfg b/setup.cfg index fbd87e1..4feb895 100644 --- a/setup.cfg +++ b/setup.cfg @@ -40,14 +40,14 @@ package_dir = =src # Require a min/specific Python version (comma-separated conditions) -python_requires = >=3.10 +python_requires = >=3.11 # Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0. # Version specifiers like >=2.2,<3.0 avoid problems due to API changes in # new major versions. This works if the required packages follow Semantic Versioning. # For more information, check out https://semver.org/. install_requires = - importlib-metadata; python_version<"3.10" + importlib-metadata; python_version<"3.11" aiohttp