mirror of
https://github.com/PragmaticMachineLearning/probly.git
synced 2026-01-09 13:27:55 -05:00
21 lines
491 B
YAML
21 lines
491 B
YAML
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
# Set the OS, Python version, and other tools you might need
|
|
build:
|
|
os: ubuntu-24.04
|
|
tools:
|
|
python: "3.11" # Using a stable Python version
|
|
|
|
# Build documentation with Mkdocs
|
|
mkdocs:
|
|
configuration: docs/mkdocs.yml
|
|
|
|
# Declare the Python requirements required to build your documentation
|
|
python:
|
|
install:
|
|
- requirements: docs/requirements.txt
|