Skip to content

Commit 865b213

Browse files
Copilotseanthegeek
andauthored
Drop Python 3.9 support (#237)
* Initial plan * Drop Python 3.9 support, set minimum to Python 3.10 Co-authored-by: seanthegeek <44679+seanthegeek@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: seanthegeek <44679+seanthegeek@users.noreply.github.com>
1 parent 95635a1 commit 865b213

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/python-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Set up Python 3.9
19+
- name: Set up Python 3.10
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: "3.9"
22+
python-version: "3.10"
2323
- name: Install Python dependencies
2424
run: |
2525
python -m pip install --upgrade pip

docs/source/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installation
22

3-
`checkdmarc` requires Python 3.
3+
`checkdmarc` requires Python 3.10 or later.
44

55
On Debian or Ubuntu systems, run:
66

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "checkdmarc"
99
dynamic = [
1010
"version",
1111
]
12-
python_requires = ">=3.9"
12+
python_requires = ">=3.10"
1313
description = "A Python module and command line parser for SPF and DMARC records"
1414
readme = "README.md"
1515
license = "Apache-2.0"

0 commit comments

Comments
 (0)