From 6b219734fcd8d2f6489c2f50585a435b34c029c2 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 19 Jun 2023 08:28:05 -0300 Subject: [PATCH] Add readthedocs configuration file (#295) As received by email, this configuration file will become mandatory: > The Read the Docs build system will start requiring a configuration file v2 (.readthedocs.yaml) > starting on September 25, 2023. We are sending weekly notifications about this issue to all impacted users, > as well as temporary build failures (brownouts) as the date approaches for those who haven't migrated their projects. --- .readthedocs.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .readthedocs.yml diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 00000000..336693bd --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,18 @@ +version: 2 + +python: + install: + - method: pip + path: . + +build: + os: ubuntu-20.04 + tools: + python: "3.9" + apt_packages: + - inkscape + +formats: + - epub + - pdf + - htmlzip