Skip to content

Commit

Permalink
Merge pull request #1881 from github/henrymercer/fix-update-ghes-vers…
Browse files Browse the repository at this point in the history
…ions

Update ignored version number in GHES versions automation
  • Loading branch information
henrymercer authored Sep 15, 2023
2 parents 5f18c9a + 8b733e7 commit a9313c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def main():
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"]
if "11.10" in releases:
del releases["11.10"]

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

0 comments on commit a9313c9

Please sign in to comment.