Skip to content

Commit 3e0e691

Browse files
authored
'pip install --upgrade' to automatically deploy newer requirements (#161)
1 parent 952c9ee commit 3e0e691

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ def build_venv(self):
835835
venv_path = self.build_root / ("venv-" + self.version.name)
836836
run([sys.executable, "-m", "venv", venv_path])
837837
run(
838-
[venv_path / "bin" / "python", "-m", "pip", "install"]
838+
[venv_path / "bin" / "python", "-m", "pip", "install", "--upgrade"]
839839
+ [self.theme]
840840
+ self.version.requirements,
841841
cwd=self.checkout / "Doc",

0 commit comments

Comments
 (0)