Skip to content

Commit

Permalink
Start Python 3.7 deprecation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubernostrum committed Jul 11, 2023
1 parent 0a51a0b commit 7a1d860
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- name: Harden Runner
Expand Down
10 changes: 3 additions & 7 deletions noxfile.py
Expand Up @@ -55,17 +55,13 @@ def clean(paths: typing.Iterable[os.PathLike] = ARTIFACT_PATHS) -> None:
"python,django",
[
# Python/Django testing matrix. Tests Django 3.2, 4.0, 4.1,
# 4.2, on Python 3.7 through 3.11, skipping unsupported
# combinations: Django 3.2 and 4.0 do not support Python 3.11,
# and Django 4.0 and 4.1 do not support Python 3.7.
# 4.2, on Python 3.8 through 3.11, skipping unsupported
# combinations.
(python, django)
for python in ["3.7", "3.8", "3.9", "3.10", "3.11"]
for python in ["3.8", "3.9", "3.10", "3.11"]
for django in ["3.2", "4.1", "4.2"]
if (python, django)
not in [
("3.7", "4.0"),
("3.7", "4.1"),
("3.7", "4.2"),
("3.11", "3.2"),
]
],
Expand Down

0 comments on commit 7a1d860

Please sign in to comment.