Skip to content

Commit

Permalink
bump Python min version for main Django (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Jan 21, 2025
1 parent 9ba1758 commit 7de8722
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
DJ42 = "4.2"
DJ50 = "5.0"
DJMAIN = "main"
DJMAIN_MIN_PY = PY310
DJMAIN_MIN_PY = PY312
DJ_VERSIONS = [DJ42, DJ50, DJMAIN]
DJ_LTS = [DJ42]
DJ_LTS = [
version for version in DJ_VERSIONS if version.endswith(".2") and version != DJMAIN
]
DJ_DEFAULT = DJ_LTS[0]
DJ_LATEST = DJ_VERSIONS[-2]

Expand Down

0 comments on commit 7de8722

Please sign in to comment.