Skip to content

Commit ffa3cb2

Browse files
Drop Python 3.9 (#739)
1 parent 192e7a4 commit ffa3cb2

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.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.9', '3.10', '3.11']
54+
pyver: ['3.10', '3.11']
5555
os: [ubuntu, macos, windows]
5656
include:
57-
- pyver: pypy-3.9
57+
- pyver: pypy-3.10
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 = py39.py310.py311.py312.py313
14+
python_tag = py310.py311.py312.py313

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
'Environment :: Console',
2323
'Programming Language :: Python',
2424
'Programming Language :: Python :: 3',
25-
'Programming Language :: Python :: 3.9',
2625
'Programming Language :: Python :: 3.10',
2726
"Programming Language :: Python :: 3.11",
2827
"Programming Language :: Python :: 3.12",
@@ -70,5 +69,5 @@
7069
'Pygments>=2.2.0',
7170
"watchfiles>=0.10"
7271
],
73-
python_requires=">=3.9",
72+
python_requires=">=3.10",
7473
)

0 commit comments

Comments
 (0)