Skip to content

Commit f68a7c5

Browse files
kylucakbdharun
andauthored
build!: drop support for EOL Python 3.9 (#312)
Co-authored-by: K.B.Dharun Krishna <[email protected]>
1 parent 154cae9 commit f68a7c5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-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', '3.14', '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', '3.14', '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', '3.14']
111111

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

pyproject.toml

Lines changed: 2 additions & 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,11 +37,11 @@ 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",
4443
"Programming Language :: Python :: 3.13",
44+
"Programming Language :: Python :: 3.14",
4545
"Topic :: Documentation",
4646
"Topic :: Software Development :: Documentation",
4747
"Topic :: System",

0 commit comments

Comments
 (0)