You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The `omit` parameter of `cattrs.override()` is now of type `bool | None` (from `bool`). `None` is the new default and means to apply default `cattrs` handling to the attribute.
5
9
- Fix `format_exception` parameter working for recursive calls to `transform_error`
-[_attrs_ aliases](https://www.attrs.org/en/stable/init.html#private-attributes-and-aliases) are now supported, although aliased fields still map to their attribute name instead of their alias by default when un/structuring.
Copy file name to clipboardExpand all lines: docs/Makefile
+2-7
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,10 @@
3
3
4
4
# You can set these variables from the command line.
5
5
SPHINXOPTS =
6
-
SPHINXBUILD = sphinx-build
6
+
SPHINXBUILD = pdm run sphinx-build
7
7
PAPER =
8
8
BUILDDIR = _build
9
9
10
-
# User-friendly check for sphinx-build
11
-
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12
-
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
13
-
endif
14
-
15
10
# Internal variables.
16
11
PAPEROPT_a4 = -D latex_paper_size=a4
17
12
PAPEROPT_letter = -D latex_paper_size=letter
@@ -177,4 +172,4 @@ pseudoxml:
177
172
@echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."
0 commit comments