Skip to content

Commit c586a4e

Browse files
authored
Merge pull request #61 from python-cas/remove-old-python
Remove python 3.8/3.9 support
2 parents 4231534 + 266b23d commit c586a4e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
max-parallel: 4
1515
matrix:
16-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Features
1616
--------
1717

1818
- Support Client part of **CAS** version 1.0, 2.0 and 3.0.
19-
- Support Python 3.8+
19+
- Support Python 3.10+
2020

2121

2222
Documentation

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@
2020
'Natural Language :: English',
2121
'Operating System :: OS Independent',
2222
'Programming Language :: Python',
23-
'Programming Language :: Python :: 3.8',
24-
'Programming Language :: Python :: 3.9',
2523
'Programming Language :: Python :: 3.10',
2624
'Programming Language :: Python :: 3.11',
2725
'Programming Language :: Python :: 3.12',
26+
'Programming Language :: Python :: 3.13',
2827
'Topic :: Internet :: WWW/HTTP',
2928
],
30-
python_requires=">=3.8",
29+
python_requires=">=3.10",
3130
install_requires=[
3231
'six>=1.10.0',
3332
'requests>=2.11.1',

0 commit comments

Comments
 (0)