Skip to content

Commit

Permalink
Remove printouts
Browse files Browse the repository at this point in the history
  • Loading branch information
Raunak Bhagat committed Dec 2, 2024
1 parent cae11a9 commit 5f8c20f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/ci-scripts/upload_wheel_to_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,9 @@
assert path_to_wheel_dir.exists(), f"Path to wheel directory does not exist: {path_to_wheel_dir}"
wheelpaths = iter(filepath for filepath in path_to_wheel_dir.iterdir() if filepath.suffix == constants.WHEEL_SUFFIX)

print(f"{platform_substring=}")

def f(wheelpath: Path) -> bool:
platform_tag = wheellib.get_platform_tag(wheelpath.name)
print(f"{platform_tag=}")
print(platform_substring in platform_tag)
return True
return platform_substring in platform_tag

filtered_wheelpaths: list[Path] = list(filter(f, wheelpaths))

Expand Down

0 comments on commit 5f8c20f

Please sign in to comment.