mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-18 06:18:53 +00:00
Upgrade Rust toolchain to 1.85 (#11720)
## Summary * Upgrade the rust toolchain to 1.85.0. This does not increase the MSRV. * Update windows trampoline to 1.86 nightly beta (previously in 1.85 nightly beta). ## Test Plan Existing tests
This commit is contained in:
parent
3c541e2368
commit
878497a014
21 changed files with 51 additions and 56 deletions
|
@ -1,6 +1,5 @@
|
|||
use uv_cache::Refresh;
|
||||
use uv_configuration::ConfigSettings;
|
||||
use uv_distribution_types::{PipExtraIndex, PipFindLinks, PipIndex};
|
||||
use uv_resolver::PrereleaseMode;
|
||||
use uv_settings::{Combine, PipOptions, ResolverInstallerOptions, ResolverOptions};
|
||||
|
||||
|
@ -203,12 +202,11 @@ impl From<IndexArgs> for PipOptions {
|
|||
.combine(
|
||||
index.map(|index| index.into_iter().filter_map(Maybe::into_option).collect()),
|
||||
),
|
||||
index_url: index_url.and_then(Maybe::into_option).map(PipIndex::from),
|
||||
index_url: index_url.and_then(Maybe::into_option),
|
||||
extra_index_url: extra_index_url.map(|extra_index_urls| {
|
||||
extra_index_urls
|
||||
.into_iter()
|
||||
.filter_map(Maybe::into_option)
|
||||
.map(PipExtraIndex::from)
|
||||
.collect()
|
||||
}),
|
||||
no_index: if no_index { Some(true) } else { None },
|
||||
|
@ -216,7 +214,6 @@ impl From<IndexArgs> for PipOptions {
|
|||
find_links
|
||||
.into_iter()
|
||||
.filter_map(Maybe::into_option)
|
||||
.map(PipFindLinks::from)
|
||||
.collect()
|
||||
}),
|
||||
..PipOptions::default()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue