Resolve "`mkdocs build` command fails when running `make run`"
This MR resolves two issues with the make docs
command encountered when running make run
:
- It uses the mkdocs in the local environment.
- It does a minor upgrade to mkdocstrings-python version 1.10.8 from 1.10.5 to resolve a dependency mismatch.
Steps to test:
- Run
rm -rf site
. - Switch to the main branch and run
make dev-depends
. - Deactivate your Python environment, as this would be the case on a first run from someone just setting up the project.
- In the project root, run
make docs
. It should fail. - Switch to
49-fix-mkdocs-failure
. - Run
make docs
. It should still fail, but with a different error. - Run
make dev-depends
. - Run
make docs
. It should succeed.
Closes #49 (closed)
Edited by Chris Zubak-Skees