From 9a6271f9747757abf9ca031e2a947be1862e5c8d Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 30 Apr 2026 09:03:05 +0200 Subject: [PATCH 1/2] Tiny change to trigger MSI tests --- Tools/msi/README.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/Tools/msi/README.txt b/Tools/msi/README.txt index 8ae156450d5240..4b3de9e82f6f1a 100644 --- a/Tools/msi/README.txt +++ b/Tools/msi/README.txt @@ -528,4 +528,3 @@ explicitly handled by the installer. Python packages installed later using a tool like pip will not be removed. Some components may be installed by other installers and these will not be removed if another product has a dependency on them. - From 1e3df2a696d131014720cf99a61beaa78c9e08df Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 30 Apr 2026 09:33:23 +0200 Subject: [PATCH 2/2] Switch Doc\make.bat back to requirements.txt --- Doc/make.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/make.bat b/Doc/make.bat index 64a42257c92571..99f0d5c44f0098 100644 --- a/Doc/make.bat +++ b/Doc/make.bat @@ -13,7 +13,7 @@ if not defined SPHINXBUILD ( %PYTHON% -c "import sphinx" > nul 2> nul if errorlevel 1 ( echo Installing sphinx with %PYTHON% - %PYTHON% -m pip install -r pylock.toml + %PYTHON% -m pip install -r requirements.txt if errorlevel 1 exit /B ) set SPHINXBUILD=%PYTHON% -c "import sphinx.cmd.build, sys; sys.exit(sphinx.cmd.build.main())"