Skip to content

Commit

Permalink
Fix sign error
Browse files Browse the repository at this point in the history
  • Loading branch information
henrymercer committed May 31, 2023
1 parent e7cff66 commit 955f859
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def main():
end_of_life_date = datetime.date.fromisoformat(release_data["end"])
# The GHES version is not actually end of life until the end of the day specified by
# `end_of_life_date`. Wait an extra week to be safe.
if end_of_life_date > datetime.date.today() + datetime.timedelta(weeks=1):
if end_of_life_date > datetime.date.today() - datetime.timedelta(weeks=1):
oldest_supported_release = release_version

api_compatibility_data = {
Expand Down

0 comments on commit 955f859

Please sign in to comment.