Skip to content

Commit 091119a

Browse files
author
Sylvain MARIE
committed
Added missing pillow dependency, see smarie/mkdocs-gallery#26
1 parent af5078f commit 091119a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def docs(session: PowerSession):
159159

160160
# we need to install self for the doc gallery examples to work
161161
session.run2("pip install .")
162-
session.install_reqs(phase="docs", phase_reqs=["mkdocs-material", "mkdocs", "pymdown-extensions", "pygments", "mkdocs-gallery"])
162+
session.install_reqs(phase="docs", phase_reqs=["mkdocs-material", "mkdocs", "pymdown-extensions", "pygments", "mkdocs-gallery", "pillow"])
163163

164164
if session.posargs:
165165
# use posargs instead of "serve"
@@ -174,7 +174,7 @@ def publish(session: PowerSession):
174174

175175
# we need to install self for the doc gallery examples to work
176176
session.run2("pip install .")
177-
session.install_reqs(phase="mkdocs", phase_reqs=["mkdocs-material", "mkdocs", "pymdown-extensions", "pygments", "mkdocs-gallery"])
177+
session.install_reqs(phase="mkdocs", phase_reqs=["mkdocs-material", "mkdocs", "pymdown-extensions", "pygments", "mkdocs-gallery", "pillow"])
178178

179179
# possibly rebuild the docs in a static way (mkdocs serve does not build locally)
180180
session.run2("mkdocs build")

0 commit comments

Comments
 (0)