mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
27 lines
450 B
YAML
27 lines
450 B
YAML
version: 2
|
|
|
|
formats:
|
|
- epub
|
|
- pdf
|
|
|
|
build:
|
|
os: "ubuntu-22.04"
|
|
tools:
|
|
python: "3.10"
|
|
apt_packages:
|
|
- graphviz
|
|
jobs:
|
|
post_checkout:
|
|
# necessary to ensure that the development builds get a correct version tag
|
|
- git fetch --unshallow || true
|
|
|
|
# Build from the docs/ directory with Sphinx
|
|
sphinx:
|
|
configuration: docs/conf.py
|
|
|
|
python:
|
|
install:
|
|
- method: pip
|
|
path: .
|
|
extra_requirements:
|
|
- docs
|