Skip to content

Commit 73dc75a

Browse files
committed
fix: Remove Python 3.8 and 3.9 from CI matrix
3.8 and 3.9 are failing because the pinned dependencies don't support them: - autopep8==2.3.2 needs Python 3.9+ - bleach==6.3.0 needs Python 3.10+ Both are EOL now anyway (3.8 in Oct 2024, 3.9 in Oct 2025). Just fixing CI to test 3.10-3.14 for now. Will do a separate PR to formally drop 3.8/3.9 support with python_requires and README updates.
1 parent cd23dd1 commit 73dc75a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-24.04
1818
strategy:
1919
matrix:
20-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
20+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2121

2222
steps:
2323
- name: Checkout repository

0 commit comments

Comments
 (0)