Skip to content

Commit e4b0f6b

Browse files
committed
Python 3.9 support drop
1 parent 85a509f commit e4b0f6b

File tree

4 files changed

+8
-77
lines changed

4 files changed

+8
-77
lines changed

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v6
1313

14-
- name: Set up Python 3.9
14+
- name: Set up Python
1515
uses: actions/setup-python@v6
1616
with:
17-
python-version: 3.9
17+
python-version: 3.14
1818

1919
- name: Get full Python version
2020
id: full-python-version

.github/workflows/python-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
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
fail-fast: false
1919
steps:
2020
- uses: actions/checkout@v6
@@ -74,7 +74,7 @@ jobs:
7474
- name: "Setup Python"
7575
uses: actions/setup-python@v6
7676
with:
77-
python-version: 3.9
77+
python-version: 3.14
7878

7979
- name: Get full Python version
8080
id: full-python-version

poetry.lock

Lines changed: 3 additions & 71 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ classifiers = [
4646
"Topic :: Software Development :: Libraries :: Python Modules",
4747
"Operating System :: OS Independent",
4848
"Programming Language :: Python :: 3",
49-
"Programming Language :: Python :: 3.9",
5049
"Programming Language :: Python :: 3.10",
5150
"Programming Language :: Python :: 3.11",
5251
"Programming Language :: Python :: 3.12",
@@ -60,7 +59,7 @@ include = [
6059
]
6160

6261
[tool.poetry.dependencies]
63-
python = "^3.9.0"
62+
python = "^3.10.0"
6463
django = {version = ">=3.0", optional = true}
6564
falcon = {version = ">=3.0", optional = true}
6665
flask = {version = "*", optional = true}

0 commit comments

Comments
 (0)