Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
irrd/.readthedocs.yaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (22 sloc)
698 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .readthedocs.yaml | |
# Read the Docs configuration file | |
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | |
# Required | |
version: 2 | |
# Set the version of Python and other tools you might need | |
build: | |
os: ubuntu-22.04 | |
tools: | |
python: "3.11" | |
rust: "1.64" | |
jobs: | |
post_install: | |
# This is copied from the poetry config - not great but just could not get it working otherwise | |
- pip install sphinx==6.1.3 | |
- pip install sphinxcontrib-spelling==8.0.0 | |
- pip install sphinx-immaterial==0.11.11 | |
- pip install pyenchant==3.2.2 | |
# Build documentation in the docs/ directory with Sphinx | |
sphinx: | |
configuration: docs/conf.py | |
builder: dirhtml |