You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
539 B
YAML
21 lines
539 B
YAML
version: 2
|
|
|
|
build:
|
|
os: "ubuntu-22.04"
|
|
tools:
|
|
python: "3.10"
|
|
jobs:
|
|
post_create_environment:
|
|
# Install poetry
|
|
# https://python-poetry.org/docs/#installing-manually
|
|
- pip install poetry
|
|
# Tell poetry to not use a virtual environment
|
|
- poetry config virtualenvs.create false
|
|
post_install:
|
|
# Install dependencies with 'docs' dependency group
|
|
# https://python-poetry.org/docs/managing-dependencies/#dependency-group
|
|
- poetry install
|
|
|
|
sphinx:
|
|
configuration: bovine/docs/conf.py
|