From 0c1e838ecc29ff8c6dcb3534fb2a2f5de6686ef6 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 30 Sep 2024 14:30:03 -0500 Subject: [PATCH] add exceptions for Python versions and Django 5.1 --- noxfile.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/noxfile.py b/noxfile.py index cb27567..6fccf32 100644 --- a/noxfile.py +++ b/noxfile.py @@ -45,6 +45,10 @@ def should_skip(python: str, django: str) -> bool: # Django 5.0 requires Python 3.10+ return True + if django == DJ51 and version(python) < version(PY310): + # Django 5.1 requires Python 3.10+ + return True + return False