-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
With the recent release of version 0.8.0 of mkdocs-alias, we started having errors when building our documentation using Python 3.8 (See these CI logs).
It seems that the package's code started using list for annotating lists of objects instead of using List from the typing package and that is not supported in Python 3.8.
There are 2 possible solutions:
- Add
from __future__ import annotationsat the top of the plugin module. - Use
Listfrom the typing package instead oflistuntil Python 3.8 is no longer supported.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Projects
Status
Done