mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 21:07:50 +00:00
33e4f33afe
Now that the mypy bugs have been resolved, we are able to define more precisely and cleanly the types of Actions and Filters. Moreover, can now strongly type named actions and hooks (in consts.py). With such a strong typing, we get early alerts of hooks called with incorrect arguments, which is nothing short of awesome :) This change breaks the hooks API by removing the `context=...` argument. The reason for that is that we cannot insert arbitrary arguments between `P.args, P.kwargs`: https://peps.python.org/pep-0612/#the-components-of-a-paramspec > A function declared as def inner(a: A, b: B, *args: P.args, **kwargs: > P.kwargs) -> R has type Callable[Concatenate[A, B, P], R]. Placing > keyword-only parameters between the *args and **kwargs is forbidden. Getting the documentation to build in nitpicky mode is quite difficult... We need to add `nitpick_ignore` to the docs conf.py, otherwise sphinx complains about many missing class references. This, despite upgrading almost all doc requirements (except docutils).
18 lines
396 B
Makefile
18 lines
396 B
Makefile
.DEFAULT_GOAL := html
|
|
.PHONY: help
|
|
|
|
build:
|
|
sphinx-build -b html -a -E -n $(BUILD_ARGS) "." "_build/html"
|
|
|
|
html:
|
|
$(MAKE) build BUILD_ARGS="-W --keep-going"
|
|
|
|
browse:
|
|
sensible-browser _build/html/index.html
|
|
|
|
watch: build browse
|
|
while true; do $(MAKE) wait-for-change build || true; done
|
|
|
|
wait-for-change:
|
|
inotifywait -e modify $(shell find . -name "*.rst") ../*.rst ../tutor/hooks/*.py conf.py
|