From 266b23dd40b3e2d340df21218d1932cb818889cc Mon Sep 17 00:00:00 2001 From: Nikolas Nyby Date: Wed, 8 Oct 2025 11:10:19 -0400 Subject: [PATCH] Remove python 3.8/3.9 support --- .github/workflows/CI.yml | 2 +- README.rst | 2 +- setup.py | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7ce6291..6740e15 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,7 +13,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/README.rst b/README.rst index 89a1b24..c1fcd9f 100644 --- a/README.rst +++ b/README.rst @@ -16,7 +16,7 @@ Features -------- - Support Client part of **CAS** version 1.0, 2.0 and 3.0. -- Support Python 3.8+ +- Support Python 3.10+ Documentation diff --git a/setup.py b/setup.py index e5a2771..520cf6f 100755 --- a/setup.py +++ b/setup.py @@ -20,14 +20,13 @@ 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', - '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', 'Topic :: Internet :: WWW/HTTP', ], - python_requires=">=3.8", + python_requires=">=3.10", install_requires=[ 'six>=1.10.0', 'requests>=2.11.1',