-
-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Impossible to run mkdocstrings example #67
Labels
bug
Something isn't working
Comments
incompatible with conda virtualenv |
What's your Jinja2 version? It seems a WindowsPath is recognized as iterable while a PosixPath is not 😕 ? I've got this in my installed jinja2, 2.11.1: if not isinstance(searchpath, abc.Iterable) or isinstance(
searchpath, string_types
):
searchpath = [searchpath] This is jinja2's master branch: if not isinstance(searchpath, abc.Iterable) or isinstance(searchpath, str):
searchpath = [searchpath] |
What's incompatible exactly 🙂 ? |
Closed
Based on this comment, it seems you can fix this by upgrading Jinja2. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there,
I've been trying to use mkdocstrings, but when I run mkdocs serve this is the error I have:
My requirements are:
mkdocs==1.1
mkdocs-material==4.6.3
mkdocstrings==0.10.0
Basically, it seems that my searchpath is a WindowsPath type and not a list. But I have no clue how to solve this. Could you help me with this please ?
(I tried to run mkdocs on the mkdocstrings library locally)
Thanks :)
The text was updated successfully, but these errors were encountered: