Skip to content

Commit 3ff6a21

Browse files
Drop Python 3.8 (#713)
1 parent 47680ea commit 3ff6a21

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ jobs:
5151
name: Test
5252
strategy:
5353
matrix:
54-
pyver: ['3.8', '3.9', '3.10', '3.11']
54+
pyver: ['3.9', '3.10', '3.11']
5555
os: [ubuntu, macos, windows]
5656
include:
57-
- pyver: pypy-3.8
57+
- pyver: pypy-3.9
5858
os: ubuntu
5959
runs-on: ${{ matrix.os }}-latest
6060
timeout-minutes: 15

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ max-line-length = 120
1111
max-complexity = 10
1212

1313
[bdist_wheel]
14-
python-tag = py38.py39.py310.py311
14+
python-tag = py39.py310.py311.py312.py313

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@
2222
'Environment :: Console',
2323
'Programming Language :: Python',
2424
'Programming Language :: Python :: 3',
25-
'Programming Language :: Python :: 3.8',
2625
'Programming Language :: Python :: 3.9',
2726
'Programming Language :: Python :: 3.10',
2827
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
2930
'Intended Audience :: Developers',
3031
'Intended Audience :: Information Technology',
3132
'Intended Audience :: System Administrators',
@@ -70,5 +71,5 @@
7071
'Pygments>=2.2.0',
7172
"watchfiles>=0.10"
7273
],
73-
python_requires=">=3.8",
74+
python_requires=">=3.9",
7475
)

0 commit comments

Comments
 (0)