add check_output_timestamps to python.rs

This commit is contained in:
Luc Mcgrady 2025-06-22 01:53:38 +01:00
parent 8272195288
commit cd544c8a25
No known key found for this signature in database
GPG key ID: 4F3D7A0B17CC3D9C

View file

@ -159,6 +159,10 @@ impl BuildAction for PythonEnvironment {
}
build.add_output_stamp(format!("{}/.stamp", self.venv_folder));
}
fn check_output_timestamps(&self) -> bool {
true
}
}
pub struct PythonTypecheck {