Skip to content

Commit

Permalink
add exceptions for Python versions and Django 5.1 (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Sep 30, 2024
1 parent f043992 commit edd7187
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit edd7187

Please sign in to comment.