Skip to content

Commit fe77ee9

Browse files
committed
Fixture
1 parent c7ef8b4 commit fe77ee9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

crates/uv-build-backend/src/lib.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,20 @@ pub use metadata::{check_direct_build, PyProjectToml};
77
pub use source_dist::{build_source_dist, list_source_dist};
88
pub use wheel::{build_editable, build_wheel, list_wheel, metadata};
99

10-
use crate::metadata::ValidationError;
11-
use itertools::Itertools;
1210
use std::fs::FileType;
1311
use std::io;
1412
use std::path::{Path, PathBuf};
13+
1514
use thiserror::Error;
15+
use itertools::Itertools;
1616
use tracing::debug;
17+
1718
use uv_fs::Simplified;
1819
use uv_globfilter::PortableGlobError;
1920
use uv_pypi_types::{Identifier, IdentifierParseError};
2021

22+
use crate::metadata::ValidationError;
23+
2124
#[derive(Debug, Error)]
2225
pub enum Error {
2326
#[error(transparent)]

crates/uv/tests/it/build_backend.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ fn build_module_name_normalization() -> Result<()> {
539539
----- stdout -----
540540
541541
----- stderr -----
542-
error: Expected a single Python module for `django_plugin` with an `__init__.py`, found multiple:
542+
error: Expected an `__init__.py` at `django_plugin`, found multiple:
543543
* `src/Django_plugin`
544544
* `src/django_plugin`
545545
");

0 commit comments

Comments
 (0)