fix(docs): pin things due to the mkdocs pin (#1181)

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
Henry Schreiner
2022-07-18 09:14:51 -05:00
committed by GitHub
parent 7c922f99d4
commit 61821a8473
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -92,12 +92,13 @@ def update_proj(session: nox.Session) -> None:
)
@nox.session
@nox.session(python="3.9")
def docs(session: nox.Session) -> None:
"""
Build the docs.
"""
session.install("-e", ".[docs]")
session.run("pip", "list")
if session.posargs:
if "serve" in session.posargs:
+2 -1
View File
@@ -3,10 +3,11 @@ from setuptools import setup
extras = {
"docs": [
"mkdocs-include-markdown-plugin==2.8.0",
"mkdocs==1.0.4",
"mkdocs==1.0.4", # Doesn't support Python 3.10+
"jinja2==3.0.3",
"pymdown-extensions",
"mkdocs-macros-plugin",
"markdown<3.4", # Breaks mkdocs 1.0.4
],
"test": [
"jinja2",