Skip to content

Commit d1c0498

Browse files
committed
fix editable
1 parent 734f528 commit d1c0498

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/pixi-build-python/src/protocol.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ impl<P: ProjectModel + Sync> Protocol for PythonBuildBackend<P> {
368368
///
369369
/// However, lets take everything in the directory as input for now
370370
fn input_globs(editable: bool) -> Vec<String> {
371-
let mut globs = vec![
371+
let mut globs: Vec<_> = vec![
372372
// Source files
373373
"**/*.c",
374374
"**/*.cpp",
@@ -406,6 +406,8 @@ fn input_globs(editable: bool) -> Vec<String> {
406406
globs.push("**/*.py".to_string());
407407
globs.push("**/*.pyx".to_string());
408408
}
409+
410+
globs
409411
}
410412

411413
pub struct PythonBuildBackendInstantiator {

0 commit comments

Comments
 (0)