Ignore classic GHES version when updating supported versions
This commit is contained in:
parent
d23060145b
commit
16b3d998b4
1 changed files with 5 additions and 0 deletions
|
|
@ -15,6 +15,11 @@ def main():
|
||||||
api_compatibility_data = json.loads(_API_COMPATIBILITY_PATH.read_text())
|
api_compatibility_data = json.loads(_API_COMPATIBILITY_PATH.read_text())
|
||||||
|
|
||||||
releases = json.loads(_RELEASE_FILE_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
|
oldest_supported_release = None
|
||||||
newest_supported_release = semver.VersionInfo.parse(api_compatibility_data["maximumVersion"] + ".0")
|
newest_supported_release = semver.VersionInfo.parse(api_compatibility_data["maximumVersion"] + ".0")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue