From afd1e6da74c9478acb42e250b2a4e27f42d04cf5 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sat, 1 Jun 2024 01:56:38 +0300 Subject: [PATCH] Added MongoDB dependency to ReadTheDocs configuration (#1502) * 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. * Rename changelog file --- .readthedocs.yml | 2 +- CHANGES/1501.doc.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 CHANGES/1501.doc.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.doc.rst b/CHANGES/1501.doc.rst new file mode 100644 index 00000000..780dd167 --- /dev/null +++ b/CHANGES/1501.doc.rst @@ -0,0 +1 @@ +Fixed MongoStorage section in the documentation by adding extra dependency to ReadTheDocs configuration.