Skip to content

Commit caf5954

Browse files
committed
Remove Python 3.9 support
Python 3.9 has reached it's end-of-life in last october. Let's support supporting it.
1 parent 13d306f commit caf5954

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/run_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
17+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1818

1919
steps:
2020
- name: Checkout code

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
license = "MIT"
88
license-files = ["LICENSE"]
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
dependencies = [
1212
"ass>=1.0.0, < 2",
1313
"ass-tag-analyzer < 1",
@@ -22,7 +22,6 @@ classifiers=[
2222
"Intended Audience :: End Users/Desktop",
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",

0 commit comments

Comments
 (0)