We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e59dd2 commit c567ccbCopy full SHA for c567ccb
docs/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.8
+FROM python:3.9
2
3
WORKDIR /app/
4
@@ -29,9 +29,9 @@ RUN pip install -e .[all]
29
30
# Build the Docs
31
# --------------
32
-ADD docs/main.py ./docs/
+ADD docs/app.py ./docs/
33
+ADD docs/examples.py ./docs/
34
ADD docs/source ./docs/source
-ADD examples ./examples
35
36
RUN pip install -r requirements/build-docs.txt
37
RUN sphinx-build -b html docs/source docs/build
docs/source/_exts/widget_example.py
@@ -1,3 +1,5 @@
+from __future__ import annotations
+
import re
from pathlib import Path
5
from typing import Any
0 commit comments