From d38f4ff9a0d8409fb8785a39092556aa7a08339c Mon Sep 17 00:00:00 2001 From: Nikolas Nyby Date: Fri, 30 Aug 2024 01:08:58 -0400 Subject: [PATCH] Update supported python versions --- .github/workflows/CI.yml | 2 +- README.rst | 2 +- setup.py | 10 +++------- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7273efa..a07cec4 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"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/README.rst b/README.rst index 1488dc2..89a1b24 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 2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10 +- Support Python 3.8+ Documentation diff --git a/setup.py b/setup.py index 93698c1..e5a2771 100755 --- a/setup.py +++ b/setup.py @@ -20,18 +20,14 @@ 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - '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', 'Topic :: Internet :: WWW/HTTP', ], - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", + python_requires=">=3.8", install_requires=[ 'six>=1.10.0', 'requests>=2.11.1',