Remove unused doc environemnt in noxfile

We don't have docs. The program does one thing.

Change-Id: I4a28c80d9f5023c531553dacb0310889bf275cda
This commit is contained in:
Monty Taylor 2024-06-27 13:44:12 -07:00
parent 230bd88928
commit 1f78a1fd5c

View File

@ -31,21 +31,6 @@ def linters(session):
session.run("flake8")
@nox.session(python="3")
def docs(session):
install_deps(session)
session.run(
"sphinx-build",
"-W",
"-d",
"doc/build/doctrees",
"-b",
"html",
"doc/source/",
"doc/build/html",
)
@nox.session(python="3")
def venv(session):
install_deps(session)