Skip to content

Commit

Permalink
ci: Make odd minor releases LTS from now own (namely 3.7)
Browse files Browse the repository at this point in the history
Signed-off-by: Lluis Campos <[email protected]>
  • Loading branch information
lluiscampos committed Jun 14, 2024
1 parent 46a9207 commit 7c1ad50
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions extra/release_info_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
# from 3.5 all even releases are assumed to be LTS
"from-3.5": lambda minorVersion, minorValue: minorVersion >= "3.5"
and not int(minorValue) % 2,
# from 3.7 all odd releases are assumed to be LTS
"from-3.7": lambda minorVersion, minorValue: minorVersion >= "3.7"
and int(minorValue) % 2,
}


Expand Down

0 comments on commit 7c1ad50

Please sign in to comment.