mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
Fix formatting
This commit is contained in:
parent
a7fbe5ae3b
commit
91cb09afc4
5 changed files with 33 additions and 25 deletions
|
@ -16,16 +16,16 @@ use uv_pep508::MarkerTree;
|
||||||
use uv_pypi_types::ConflictItem;
|
use uv_pypi_types::ConflictItem;
|
||||||
|
|
||||||
use crate::graph_ops::{Reachable, marker_reachability};
|
use crate::graph_ops::{Reachable, marker_reachability};
|
||||||
|
pub use crate::lock::export::pex_lock::PexLock;
|
||||||
pub(crate) use crate::lock::export::pylock_toml::PylockTomlPackage;
|
pub(crate) use crate::lock::export::pylock_toml::PylockTomlPackage;
|
||||||
pub use crate::lock::export::pylock_toml::{PylockToml, PylockTomlErrorKind};
|
pub use crate::lock::export::pylock_toml::{PylockToml, PylockTomlErrorKind};
|
||||||
pub use crate::lock::export::requirements_txt::RequirementsTxtExport;
|
pub use crate::lock::export::requirements_txt::RequirementsTxtExport;
|
||||||
pub use crate::lock::export::pex_lock::PexLock;
|
|
||||||
use crate::universal_marker::resolve_conflicts;
|
use crate::universal_marker::resolve_conflicts;
|
||||||
use crate::{Installable, Package};
|
use crate::{Installable, Package};
|
||||||
|
|
||||||
|
mod pex_lock;
|
||||||
mod pylock_toml;
|
mod pylock_toml;
|
||||||
mod requirements_txt;
|
mod requirements_txt;
|
||||||
mod pex_lock;
|
|
||||||
|
|
||||||
/// A flat requirement, with its associated marker.
|
/// A flat requirement, with its associated marker.
|
||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
|
|
|
@ -102,7 +102,10 @@ impl PexLock {
|
||||||
let hash_value = hash_str[colon_pos + 1..].to_string();
|
let hash_value = hash_str[colon_pos + 1..].to_string();
|
||||||
(algorithm, hash_value)
|
(algorithm, hash_value)
|
||||||
} else {
|
} else {
|
||||||
(Self::DEFAULT_HASH_ALGORITHM.to_string(), hash_str.to_string())
|
(
|
||||||
|
Self::DEFAULT_HASH_ALGORITHM.to_string(),
|
||||||
|
hash_str.to_string(),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,7 +117,9 @@ impl PexLock {
|
||||||
// Collect root requirements
|
// Collect root requirements
|
||||||
if let Some(root) = lock.root() {
|
if let Some(root) = lock.root() {
|
||||||
for dep in &root.dependencies {
|
for dep in &root.dependencies {
|
||||||
if let Some(version) = lock.packages().iter()
|
if let Some(version) = lock
|
||||||
|
.packages()
|
||||||
|
.iter()
|
||||||
.find(|pkg| pkg.id.name == dep.package_id.name)
|
.find(|pkg| pkg.id.name == dep.package_id.name)
|
||||||
.and_then(|pkg| pkg.id.version.as_ref())
|
.and_then(|pkg| pkg.id.version.as_ref())
|
||||||
{
|
{
|
||||||
|
@ -125,7 +130,6 @@ impl PexLock {
|
||||||
|
|
||||||
// Process all packages for locked requirements
|
// Process all packages for locked requirements
|
||||||
for package in lock.packages() {
|
for package in lock.packages() {
|
||||||
|
|
||||||
// Create locked requirement
|
// Create locked requirement
|
||||||
let mut artifacts = Vec::new();
|
let mut artifacts = Vec::new();
|
||||||
|
|
||||||
|
@ -187,7 +191,10 @@ impl PexLock {
|
||||||
}
|
}
|
||||||
|
|
||||||
let locked_resolves = vec![PexLockedResolve {
|
let locked_resolves = vec![PexLockedResolve {
|
||||||
platform_tag: Self::UNIVERSAL_PLATFORM_TAG.iter().map(|s| s.to_string()).collect(),
|
platform_tag: Self::UNIVERSAL_PLATFORM_TAG
|
||||||
|
.iter()
|
||||||
|
.map(|s| s.to_string())
|
||||||
|
.collect(),
|
||||||
locked_requirements,
|
locked_requirements,
|
||||||
}];
|
}];
|
||||||
|
|
||||||
|
|
|
@ -697,7 +697,9 @@ pub(crate) async fn pip_compile(
|
||||||
write!(writer, "{}", export.to_toml()?)?;
|
write!(writer, "{}", export.to_toml()?)?;
|
||||||
}
|
}
|
||||||
ExportFormat::PexLock => {
|
ExportFormat::PexLock => {
|
||||||
return Err(anyhow::anyhow!("PEX lock format is not supported in pip compile"));
|
return Err(anyhow::anyhow!(
|
||||||
|
"PEX lock format is not supported in pip compile"
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ use uv_configuration::{
|
||||||
use uv_normalize::{DefaultExtras, DefaultGroups, PackageName};
|
use uv_normalize::{DefaultExtras, DefaultGroups, PackageName};
|
||||||
use uv_python::{PythonDownloads, PythonPreference, PythonRequest};
|
use uv_python::{PythonDownloads, PythonPreference, PythonRequest};
|
||||||
use uv_requirements::is_pylock_toml;
|
use uv_requirements::is_pylock_toml;
|
||||||
use uv_resolver::{PexLock, PylockToml, RequirementsTxtExport, Installable};
|
use uv_resolver::{Installable, PexLock, PylockToml, RequirementsTxtExport};
|
||||||
use uv_scripts::{Pep723ItemRef, Pep723Script};
|
use uv_scripts::{Pep723ItemRef, Pep723Script};
|
||||||
use uv_settings::PythonInstallMirrors;
|
use uv_settings::PythonInstallMirrors;
|
||||||
use uv_workspace::{DiscoveryOptions, MemberDiscovery, VirtualProject, Workspace, WorkspaceCache};
|
use uv_workspace::{DiscoveryOptions, MemberDiscovery, VirtualProject, Workspace, WorkspaceCache};
|
||||||
|
|
|
@ -4433,4 +4433,3 @@ fn pep_751_https_credentials() -> Result<()> {
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue