From bcb93731f93f90c920ae1cf150c38c85743901ff Mon Sep 17 00:00:00 2001 From: JRoot Junior Date: Sat, 1 Jun 2024 01:54:15 +0300 Subject: [PATCH] Add MongoDB dependency to ReadTheDocs configuration An update has been made to the ReadTheDocs configuration file to include MongoDB as an additional dependency on installation. This change addresses issues with the MongoStorage section in the documentation. --- .readthedocs.yml | 2 +- CHANGES/1501.docs.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 CHANGES/1501.docs.rst diff --git a/.readthedocs.yml b/.readthedocs.yml index b61b3f17..90f0fc0a 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -6,7 +6,7 @@ build: python: "3.11" jobs: post_install: - - pip install .[docs,redis] + - pip install .[docs,redis,mongo] sphinx: configuration: docs/conf.py diff --git a/CHANGES/1501.docs.rst b/CHANGES/1501.docs.rst new file mode 100644 index 00000000..780dd167 --- /dev/null +++ b/CHANGES/1501.docs.rst @@ -0,0 +1 @@ +Fixed MongoStorage section in the documentation by adding extra dependency to ReadTheDocs configuration.