Skip to content

Commit

Permalink
Ignore classic GHES version when updating supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
henrymercer committed Mar 17, 2023
1 parent d230601 commit 16b3d99
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ def main():
api_compatibility_data = json.loads(_API_COMPATIBILITY_PATH.read_text())

releases = json.loads(_RELEASE_FILE_PATH.read_text())

# Remove GHES version using a previous version numbering scheme.
if "11.10.340" in releases:
del releases["11.10.340"]

oldest_supported_release = None
newest_supported_release = semver.VersionInfo.parse(api_compatibility_data["maximumVersion"] + ".0")

Expand Down

0 comments on commit 16b3d99

Please sign in to comment.