Skip to content

Commit 310d1e2

Browse files
committed
fix: remove python 3.8 support
1 parent e0609da commit 310d1e2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
11+
python-version: ['3.9', '3.10', '3.11', '3.12']
1212
fail-fast: false
1313

1414
steps:

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ v3.4.1
66

77
*Release date: In development*
88

9+
- Remove Python 3.8 support (Python 3.8 reached the end of its life on October 14th, 2024)
10+
911
v3.4.0
1012
------
1113

requirements_dev.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ coveralls~=3.3
44
mock~=5.0
55
requests-mock~=1.10
66
Pygments~=2.14
7-
flake8~=5.0; python_version < '3.8'
8-
flake8~=6.0; python_version >= '3.8'
7+
flake8~=6.0
98
build~=0.10
109
wheel~=0.40
1110
twine~=4.0

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ def get_long_description():
7676
'License :: OSI Approved :: Apache Software License',
7777
'Natural Language :: English',
7878
'Operating System :: OS Independent',
79-
'Programming Language :: Python :: 3.8',
8079
'Programming Language :: Python :: 3.9',
8180
'Programming Language :: Python :: 3.10',
8281
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)