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 37491ca commit 14d6942Copy full SHA for 14d6942
docs/Makefile
@@ -14,7 +14,14 @@ help:
14
15
.PHONY: help Makefile
16
17
+source/_static/logo_docs.png: logo.py
18
+ python logo.py
19
+
20
+# Fake target to avoid the catch-all target
21
+logo.py:
22
+ @echo "never executed"
23
24
# Catch-all target: route all unknown targets to Sphinx using the new
25
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
-%: Makefile
26
+%: Makefile source/_static/logo_docs.png
27
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
docs/logo.py
@@ -1,3 +1,8 @@
1
+import os
2
+import sys
3
4
+sys.path.insert(0, os.path.abspath('..')) # to get adaptive on the path
5
6
import adaptive
7
import holoviews
8
import matplotlib.pyplot as plt
0 commit comments