From f9e928742a5e5f78179be4962a9f0d5900b1984c Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Fri, 5 Aug 2022 01:34:18 -0700 Subject: [PATCH] Run pip freeze after installing requirements It appears that the venv keeps breaking: https://github.com/python/cpython/issues/91483 I'm not sure how to best help investigate, but adding some more logging seems like it could be useful :-) --- build_docs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/build_docs.py b/build_docs.py index 9e6804c..1c11a2a 100755 --- a/build_docs.py +++ b/build_docs.py @@ -786,6 +786,7 @@ def build_venv(self): + [self.theme] + self.version.requirements ) + run([venv_path / "bin" / "python", "-m", "pip", "freeze", "--all"]) self.venv = venv_path def copy_build_to_webroot(self):