From 7bb7cfedab9147968ec25accc4698779d0f6bff1 Mon Sep 17 00:00:00 2001 From: czichy Date: Fri, 1 Sep 2023 09:24:01 +0300 Subject: [PATCH] Removing deprecated functions from readthedocs Change-Id: If9a27a12e841e638d9f32b965a81e1b47cd389ff Signed-off-by: czichy --- .readthedocs.yaml | 9 +++++++-- docs/index.rst | 1 + tox.ini | 4 +++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 095222a..864f935 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,14 +1,19 @@ --- +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details +# Required version: 2 formats: - htmlzip build: - image: latest + os: "ubuntu-22.04" + tools: + python: "3.7" python: - version: 3.7 install: - requirements: docs/requirements-docs.txt diff --git a/docs/index.rst b/docs/index.rst index d679286..037892d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -17,3 +17,4 @@ A1 Mediator * :ref:`genindex` * :ref:`modindex` * :ref:`search` + diff --git a/tox.ini b/tox.ini index 586b1cc..bb6c9de 100644 --- a/tox.ini +++ b/tox.ini @@ -37,11 +37,12 @@ deps = sphinxcontrib-httpdomain recommonmark lfdocs-conf + urllib3~=1.26.15 commands = sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html echo "Generated docs available in {toxinidir}/docs/_build/html" -whitelist_externals = echo +allowlist_externals = echo [testenv:docs-linkcheck] basepython = python3 @@ -50,4 +51,5 @@ deps = sphinx sphinxcontrib-httpdomain recommonmark lfdocs-conf + urllib3~=1.26.15 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck -- 2.16.6