From c2dd5fd8bacaca41a2675e4be6dbc043cdc0783f Mon Sep 17 00:00:00 2001 From: Vladimir Magamedov Date: Mon, 2 Oct 2023 18:59:16 +0300 Subject: [PATCH] Updated ReadTheDocs config --- .readthedocs.yaml | 11 +++++++++++ .readthedocs.yml | 6 ------ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 .readthedocs.yaml delete mode 100644 .readthedocs.yml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..910951a --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,11 @@ +version: 2 +build: + os: ubuntu-22.04 + tools: + python: "3.7" +sphinx: + configuration: docs/conf.py +python: + install: + - path: . + - requirements: requirements/docs.txt diff --git a/.readthedocs.yml b/.readthedocs.yml deleted file mode 100644 index 069800e..0000000 --- a/.readthedocs.yml +++ /dev/null @@ -1,6 +0,0 @@ -requirements_file: requirements/docs.txt -build: - image: latest -python: - version: 3.7 - pip_install: True