Skip to content

Commit 2efa5bc

Browse files
authored
Install matplotlib for opengraph preview images (#242)
1 parent 4e7299d commit 2efa5bc

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

build_docs.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -745,6 +745,10 @@ def build(self):
745745
blurb = self.venv / "bin" / "blurb"
746746

747747
if self.includes_html:
748+
# Define a tag to enable opengraph socialcards previews
749+
# (used in Doc/conf.py and requires matplotlib)
750+
sphinxopts.append("-t create-social-cards")
751+
748752
# Disable CPython switchers, we handle them now:
749753
run(
750754
["sed", "-i"]
@@ -783,13 +787,17 @@ def build_venv(self):
783787
So we can reuse them from builds to builds, while they contain
784788
different Sphinx versions.
785789
"""
790+
requirements = [self.theme] + self.version.requirements
791+
if self.includes_html:
792+
# opengraph previews
793+
requirements.append("matplotlib>=3")
794+
786795
venv_path = self.build_root / ("venv-" + self.version.name)
787796
run([sys.executable, "-m", "venv", venv_path])
788797
run(
789798
[venv_path / "bin" / "python", "-m", "pip", "install", "--upgrade"]
790799
+ ["--upgrade-strategy=eager"]
791-
+ [self.theme]
792-
+ self.version.requirements,
800+
+ requirements,
793801
cwd=self.checkout / "Doc",
794802
)
795803
run([venv_path / "bin" / "python", "-m", "pip", "freeze", "--all"])

0 commit comments

Comments
 (0)