22 lines
493 B
YAML
22 lines
493 B
YAML
---
|
|
version: 2
|
|
|
|
build:
|
|
os: ubuntu-lts-latest
|
|
tools:
|
|
# Keep version in sync with tox.ini/docs and ci.yml/docs.
|
|
python: "3.13"
|
|
jobs:
|
|
create_environment:
|
|
# Need the tags to calculate the version (sometimes).
|
|
- git fetch --tags
|
|
|
|
- asdf plugin add uv
|
|
- asdf install uv latest
|
|
- asdf global uv latest
|
|
|
|
build:
|
|
html:
|
|
- uvx --with tox-uv tox run -e docs-sponsors
|
|
- uvx --with tox-uv tox run -e docs-build -- $READTHEDOCS_OUTPUT
|