From e505ca032b08a015eb9375c8fc5a4bcc88ec1bd0 Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Fri, 27 Jun 2025 10:41:50 +0100 Subject: [PATCH] Fix/Add check_output_timestamps to PythonEnvironment (#4113) * Fix/explicitly set restat * Revert "Fix/explicitly set restat" This reverts commit ace2e5ef6a4a4c11bf2b5e77f746e958f3f20319. * add check_output_timestamps to python.rs --- build/ninja_gen/src/python.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/ninja_gen/src/python.rs b/build/ninja_gen/src/python.rs index 7ac65e85f..a799bd517 100644 --- a/build/ninja_gen/src/python.rs +++ b/build/ninja_gen/src/python.rs @@ -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 {