Skip to content

Commit 933488c

Browse files
ezio-melottiambv
andauthored
Drop Python 3.9 support (#434)
Removed Python version 3.9 from CI workflow matrix. Removed Python 3.9 from the environment list. Co-authored-by: Łukasz Langa <[email protected]>
1 parent e369a44 commit 933488c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
18+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
steps:
2121
- uses: actions/checkout@v6

readme.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Deploy
5353
Requirements and dependencies
5454
=============================
5555

56-
- Python 3.9+
56+
- Python 3.10+
5757
- aiohttp
5858
- aiohttp-jinja2
5959
- gidgethub >= 5.0.0

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{314, 313, 312, 311, 310, 39}
5+
py{314, 313, 312, 311, 310}
66

77
[testenv]
88
deps =

0 commit comments

Comments
 (0)