Fix/Add check_output_timestamps to PythonEnvironment (#4113)

* Fix/explicitly set restat

* Revert "Fix/explicitly set restat"

This reverts commit ace2e5ef6a.

* add check_output_timestamps to python.rs
This commit is contained in:
Luc Mcgrady 2025-06-27 10:41:50 +01:00 committed by GitHub
parent fdce765861
commit e505ca032b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 {