We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 734f528 commit d1c0498Copy full SHA for d1c0498
crates/pixi-build-python/src/protocol.rs
@@ -368,7 +368,7 @@ impl<P: ProjectModel + Sync> Protocol for PythonBuildBackend<P> {
368
///
369
/// However, lets take everything in the directory as input for now
370
fn input_globs(editable: bool) -> Vec<String> {
371
- let mut globs = vec![
+ let mut globs: Vec<_> = vec![
372
// Source files
373
"**/*.c",
374
"**/*.cpp",
@@ -406,6 +406,8 @@ fn input_globs(editable: bool) -> Vec<String> {
406
globs.push("**/*.py".to_string());
407
globs.push("**/*.pyx".to_string());
408
}
409
+
410
+ globs
411
412
413
pub struct PythonBuildBackendInstantiator {
0 commit comments