From 162ebf433d2a6d49bf35444f6b7bb99b1712d278 Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Fri, 20 Jun 2025 09:38:35 +0300 Subject: [PATCH] [#3919] Fix update-python-dependencies not writing to file --- doc/sphinx/update-python-dependencies.sh.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/sphinx/update-python-dependencies.sh.in b/doc/sphinx/update-python-dependencies.sh.in index f6955a5600..f496fad86d 100755 --- a/doc/sphinx/update-python-dependencies.sh.in +++ b/doc/sphinx/update-python-dependencies.sh.in @@ -7,4 +7,5 @@ if test '@HAVE_PIP_COMPILE@' = 'no'; then fi cd '@srcdir@' -@PIP_COMPILE@ --no-strip-extras --rebuild --upgrade ./src/requirements.in +@PIP_COMPILE@ --no-strip-extras --output-file=./src/requirements.txt \ + --rebuild --upgrade ./src/requirements.in