Skip to content

Commit

Permalink
docs: explain optional boolean args in from_native (#1421)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli authored Nov 22, 2024
1 parent 8901ec3 commit 6946e26
Show file tree
Hide file tree
Showing 4 changed files with 256 additions and 188 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/check_docs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
- name: local-install
run: uv pip install -e . --system
- name: check-no-errors
run: python -m mkdocs build > output.txt 2>&1
run: |
python -m mkdocs build 2>&1 | tee output.txt
cat output.txt
- name: assert-no-errors
run: python utils/check_for_no_build_errors.py
- name: strict-docs-build
Expand Down
2 changes: 2 additions & 0 deletions docs/requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
black # required by mkdocstrings_handlers
jinja2
duckdb
# Hopefully temporary until https://github.com/mkdocstrings/mkdocstrings/issues/716
git+https://github.com/MarcoGorelli/griffe.git@no-overloads
markdown-exec[ansi]
mkdocs
mkdocs-autorefs
Expand Down
Loading

0 comments on commit 6946e26

Please sign in to comment.