8000 Drop support for Python 3.9 · python/cherry-picker@c0b7cb1 · GitHub
[go: up one dir, main page]

Skip to content

Commit c0b7cb1

Browse files
committed
Drop support for Python 3.9
1 parent f5cb8ed commit c0b7cb1

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
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
os: [windows-latest, macos-latest, ubuntu-latest]
1919

2020
steps:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ license = "Apache-2.0"
1313
license-files = [ "LICENSE" ]
1414
maintainers = [ { name = "Python Core Developers", email = "core-workflow@python.org" } ]
1515
authors = [ { name = "Mariatta Wijaya", email = "mariatta@python.org" } ]
16-
requires-python = ">=3.9"
16+
requires-python = ">=3.10"
1717
classifiers = [
1818
"Intended Audience :: Developers",
1919
"Programming Language :: Python :: 3 :: Only",
20-
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires =
33
tox>=4.2
44
env_list =
5-
py{313, 312, 311, 310, 39}
5+
py{313, 312, 311, 310}
66

77
[testenv]
88
extras =

0 commit comments

Comments
 (0)
0