Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
n-dusan committed Oct 30, 2023
1 parent 3713430 commit 780fc92
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions upgrade/scripts/upgrade_python_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,9 @@ def install_wheel(
str(parse_wheel_filename(wheel_name)[1]) for wheel_name in wheel_names
]
wheel_mapping = {k: v for (k, v) in zip(parsed_wheel_versions, wheel_paths)}
print(wheel_mapping)
versions = filter_versions(SpecifierSet(version_cmd), parsed_wheel_versions)
print(f"filtered versions: {versions}")
wheel = wheel_mapping.get(versions[-1])
except IndexError:
print(f"Wheel {package_name} not found")
Expand Down

0 comments on commit 780fc92

Please sign in to comment.