Skip to content

Commit 2fede45

Browse files
support lower python version
1 parent 2ec8409 commit 2fede45

File tree

3 files changed

+638
-76
lines changed

3 files changed

+638
-76
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
strategy:
4646
matrix:
47-
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11']
47+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11']
4848
postgres-version: ['14', '15', '16', '17', '18']
4949
services:
5050
database:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers = [
3030
"Operating System :: OS Independent",
3131
"Programming Language :: Python",
3232
"Programming Language :: Python :: 3",
33+
"Programming Language :: Python :: 3.9",
3334
"Programming Language :: Python :: 3.10",
3435
"Programming Language :: Python :: 3.11",
3536
"Programming Language :: Python :: 3.12",
@@ -39,7 +40,7 @@ classifiers = [
3940
"Programming Language :: Python :: Implementation :: PyPy",
4041
"Topic :: Software Development :: Libraries :: Python Modules",
4142
]
42-
requires-python = ">=3.10"
43+
requires-python = ">=3.9"
4344
dependencies = ["django"]
4445

4546
[dependency-groups]

0 commit comments

Comments
 (0)