Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add script to drop rcYYYYMMDD suffix from packages for PyPI deploy. #477

Merged
merged 3 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions build_tools/promote_whl_from_rc_to_final.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
#!/usr/bin/env python3

# Copyright 2024 Advanced Micro Devices, Inc.
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

# This scripts takes a file like 'sharktank-2.9.0rc20241110-py3-none-any.whl'
# with embedded version '2.9.0rc20241110' as input and then drops the
# 'rcYYYYMMDD' suffix from both the embedded version and file name.
#
# Typical usage:
# pip install -r requirements-pypi-deploy.txt
# ./promote_whl_from_rc_to_final.py /path/to/file.whl --delete-old-wheel

import argparse
from change_wheel_version import change_wheel_version
from packaging.version import Version
from pathlib import Path
from pkginfo import Wheel


def parse_arguments():
parser = argparse.ArgumentParser()
parser.add_argument(
"input_file",
help="Path to the input .whl file to promote",
type=Path,
)
parser.add_argument(
"--delete-old-wheel",
help="Deletes the original wheel after successfully promoting it",
action="store_true",
default=False,
)
return parser.parse_args()


def main(args):
original_wheel_path = args.input_file
print(f"Promoting whl from rc to final: '{original_wheel_path}'")

original_wheel = Wheel(original_wheel_path)
original_version = Version(original_wheel.version)
base_version = original_version.base_version
print(
f" Original wheel version is '{original_version}' with base '{base_version}'"
)

if str(base_version) == str(original_version):
print(" Version is already a release version, skipping")
return

print(f" Changing to base version: '{base_version}'")
new_wheel_path = change_wheel_version(original_wheel_path, str(base_version), None)
print(f" New wheel path is '{new_wheel_path}'")

new_wheel = Wheel(new_wheel_path)
new_version = Version(new_wheel.version)
print(f" New wheel version is '{new_version}'")

if args.delete_old_wheel:
print(" Deleting original wheel")
original_wheel_path.unlink()


if __name__ == "__main__":
main(parse_arguments())
4 changes: 4 additions & 0 deletions build_tools/requirements-pypi-deploy.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
change_wheel_version
packaging
pkginfo
twine
Loading