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 4939512 commit 9436defCopy full SHA for 9436def
doc/Makefile
@@ -31,12 +31,6 @@ for line in sys.stdin:
31
endef
32
export PRINT_HELP_PYSCRIPT
33
34
-define CREATE_OBJECTS_INV
35
-import sphobjinv as soi
36
-inv = soi.Inventory(source="objects.txt")
37
-soi.writebytes("objects.inv", soi.compress(inv.data_file()))
38
-endef
39
-export CREATE_OBJECTS_INV
40
41
help:
42
@$(PYTHON) -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
@@ -71,7 +65,8 @@ config: ## Configure project for quartodoc and quarto
71
65
72
66
docstrings: config ## Generate qmd files from the docstrings
73
67
$(PYTHON) -m quartodoc build --config _quartodoc.yml
74
- @$(PYTHON) -c "$$CREATE_OBJECTS_INV"
68
+ # Create a objects.inv
69
+ @$(PYTHON) sphobjinv convert zlib objects.txt
75
70
76
html: docstrings ## Build html site
77
quarto render
0 commit comments