* docs: color output for docs Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * fix: use asdf (python-build) * docs: try to fix colors Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Update .pre-commit-config.yaml * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
14 lines
416 B
YAML
14 lines
416 B
YAML
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
version: 2
|
|
|
|
build:
|
|
os: ubuntu-24.04
|
|
commands:
|
|
- asdf install python 3.14-dev
|
|
- asdf global python 3.14-dev
|
|
- asdf plugin add uv
|
|
- asdf install uv latest
|
|
- asdf global uv latest
|
|
- NO_COLOR=1 uv run --no-dev --group docs mkdocs build --strict --site-dir $READTHEDOCS_OUTPUT/html
|