Skip to content

Commit f81a17c

Browse files
committed
fix: Changed minimum Python version to 3.10, as 3.9 isn't actually supported
1 parent aab6a2a commit f81a17c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
37+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3838

3939
steps:
4040
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ authors = [
88
license = "MIT"
99
license-files = [ "LICENSE" ]
1010
readme = "README.md"
11-
requires-python = ">=3.9"
11+
requires-python = ">=3.10"
1212
dependencies = [
13-
"django>=3.2.0",
13+
"django>=4.2.0",
1414
"feedgen>=1.0.0",
1515
"feedparser>=6.0.11",
1616
"httpx>=0.28.1",

0 commit comments

Comments
 (0)