From cd544c8a254f8826a99268126e6cc3117e0d4d89 Mon Sep 17 00:00:00 2001 From: Luc Mcgrady Date: Sun, 22 Jun 2025 01:53:38 +0100 Subject: [PATCH] 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 {