Skip to content

Commit

Permalink
Pre release push
Browse files Browse the repository at this point in the history
  • Loading branch information
TGWolf committed May 14, 2024
1 parent 9a38017 commit c69fdf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def get_minimum_version_from_oel(language: str) -> str:
min_version: str = semver.parse(release['cycle'])
continue

if (datetime.date.today() < datetime.date.fromisoformat(release['eol'])):
if datetime.date.today() < datetime.date.fromisoformat(release['eol']):
min_version = semver.parse(release['cycle'])

return min_version
Expand Down

0 comments on commit c69fdf2

Please sign in to comment.