From d73b476352e56736d9960ba6628a0c8b1f0bfa39 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Sun, 28 Jul 2024 09:42:56 +0300 Subject: [PATCH 1/2] Updated readthedocs config file to v2 versiom --- .readthedocs.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..a74e348 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,23 @@ +# .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-20.04 + tools: + python: "3.9" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +# Declare the Python requirements required to build your docs +python: + install: + - requirements: requirements-dev.txt + - method: pip + path: . From 144a0d9ba830e3d409399f18f544142c730973b4 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Sun, 28 Jul 2024 09:50:12 +0300 Subject: [PATCH 2/2] Removed old readthedocs file --- readthedocs.yml | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 readthedocs.yml diff --git a/readthedocs.yml b/readthedocs.yml deleted file mode 100644 index 4d61b30..0000000 --- a/readthedocs.yml +++ /dev/null @@ -1,7 +0,0 @@ -# .readthedocs.yml - -python: - version: 3.9 - setup_py_install: true - -requirements_file: requirements-dev.txt