forked from ovn-org/ovn
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
readthedocs: Add the configuration file.
Since last month ReadTheDocs only supports building with a new configuration file provided in the repository itself: https://blog.readthedocs.com/migrate-configuration-v2/ So, all our documentation builds are failing for quite some time. Add the configuration file to unblock documentation updates. Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# .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 OS, Python version, etc. | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.12" | ||
|
||
# Build documentation in the "Documentation/" directory with Sphinx. | ||
sphinx: | ||
configuration: Documentation/conf.py | ||
# Default HTML builder. | ||
builder: "html" | ||
|
||
# Build all formats: HTML, PDF, ePub. | ||
formats: all | ||
|
||
# Declare the Python requirements. | ||
python: | ||
install: | ||
- requirements: Documentation/requirements.txt |
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