Skip to content

Commit

Permalink
Fix issue where a built PYPI package was not moved to the correct dir…
Browse files Browse the repository at this point in the history
…ectory (#20)
  • Loading branch information
romain-intel authored Oct 15, 2023
1 parent c59c785 commit 6f74f45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def build_pypi_packages(
pkg_spec = cast(PypiPackageSpecification, to_build_pkg_info[key].spec)
wheel_file = os.path.join(build_dir, wheel_files[0])
# Move the built wheel to a less temporary location
wheel_file = shutil.copy(wheel_file, os.path.join(target_directory, "pypi"))
wheel_file = shutil.copy(wheel_file, target_directory)

parse_result = parse_explicit_path_pypi("file://%s" % wheel_file)
# If the source is not an actual URL, we are going to change the name
Expand Down

0 comments on commit 6f74f45

Please sign in to comment.