diff --git a/Cargo.lock b/Cargo.lock index 88c2c1d8a..13263dcd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3018,9 +3018,9 @@ dependencies = [ [[package]] name = "rattler_installs_packages" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a79b4b50124f1f9c266583862c974019e66e953139f954e776a1e52268b2d262" +checksum = "e17e7e35ce2368d1467350d7509abd74041df7f259bec73ff5bb22aaae4ff65f" dependencies = [ "async-once-cell", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index 017f04c0f..83742d708 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ rattler_virtual_packages = { version = "0.17.0", default-features = false } regex = "1.10.3" reqwest = { version = "0.11.24", default-features = false } reqwest-middleware = "0.2.4" -rip = { package = "rattler_installs_packages", version = "0.7.0", default-features = false } +rip = { package = "rattler_installs_packages", version = "0.8.0", default-features = false } self-replace = "1.3.7" serde = "1.0.196" serde-untagged = "0.1.5" diff --git a/src/install_pypi.rs b/src/install_pypi.rs index ea206f046..d47aaa37b 100644 --- a/src/install_pypi.rs +++ b/src/install_pypi.rs @@ -306,7 +306,7 @@ fn stream_python_artifacts( is_direct_url: false, }; - let wheel = tokio::spawn({ + let (wheel, _) = tokio::spawn({ let marker_environment = marker_environment.clone(); let compatible_tags = compatible_tags.clone(); let resolve_options = resolve_options.clone();