Skip to content

Commit 0e8a626

Browse files
committed
build!: drop support for EOL Python 3.9
1 parent 93f62f2 commit 0e8a626

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2424
with:
25-
python-version: '3.9'
25+
python-version: '3.10'
2626

2727
- name: Install sphinx toolset
2828
run:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: ['ubuntu-latest', 'ubuntu-24.04-arm']
15-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.10', 'pypy3.11']
15+
python-version: ['3.10', '3.11', '3.12', '3.13', 'pypy3.10', 'pypy3.11']
1616

1717
steps:
1818
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -59,7 +59,7 @@ jobs:
5959

6060
strategy:
6161
matrix:
62-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.10', 'pypy3.11']
62+
python-version: ['3.10', '3.11', '3.12', '3.13', 'pypy3.10', 'pypy3.11']
6363

6464
steps:
6565
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -107,7 +107,7 @@ jobs:
107107

108108
strategy:
109109
matrix:
110-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
110+
python-version: ['3.10', '3.11', '3.12', '3.13']
111111

112112
steps:
113113
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "Official Python command line client for tldr pages."
99
readme = "README.md"
1010
license = "MIT"
11-
requires-python = "~=3.9"
11+
requires-python = "~=3.10"
1212
authors = [
1313
{ name = "Felix Yan and tldr-pages contributors" },
1414
]
@@ -37,7 +37,6 @@ classifiers = [
3737
"Operating System :: POSIX :: BSD :: OpenBSD",
3838
"Operating System :: POSIX :: Linux",
3939
"Operating System :: POSIX :: SunOS/Solaris",
40-
"Programming Language :: Python :: 3.9",
4140
"Programming Language :: Python :: 3.10",
4241
"Programming Language :: Python :: 3.11",
4342
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)