From edc3fdbae0519f14ea4f58d5af528ee2ae1b0d80 Mon Sep 17 00:00:00 2001 From: Jackie Huang Date: Thu, 3 Jul 2025 11:46:37 +0800 Subject: [PATCH] requirements-docs.txt: fix for pillow Issue-ID: INF-497 Signed-off-by: Jackie Huang Change-Id: Ibf6d82aece9d9ff0027686c71bb58278bf56e937 --- docs/requirements-docs.txt | 2 +- docs/tox.ini | 4 ++-- tox.ini | 16 ++++++++++------ 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/docs/requirements-docs.txt b/docs/requirements-docs.txt index f2e95535..fd413822 100644 --- a/docs/requirements-docs.txt +++ b/docs/requirements-docs.txt @@ -1,4 +1,4 @@ -pillow==11.2.1 +pillow~=11.2.1 sphinx sphinx-rtd-theme>=1.0.0 docutils<0.17 diff --git a/docs/tox.ini b/docs/tox.ini index a744f43d..f51b54da 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -9,7 +9,7 @@ skipsdist = true [testenv:docs] basepython = python3 deps = - pillow==11.2.1 + pillow~=11.2.1 sphinx sphinx-rtd-theme sphinxcontrib-httpdomain @@ -25,7 +25,7 @@ allowlist_externals = echo [testenv:docs-linkcheck] basepython = python3 deps = - pillow==11.2.1 + pillow~=11.2.1 sphinx sphinx-rtd-theme sphinxcontrib-httpdomain diff --git a/tox.ini b/tox.ini index f2888fcc..f51b54da 100644 --- a/tox.ini +++ b/tox.ini @@ -9,6 +9,7 @@ skipsdist = true [testenv:docs] basepython = python3 deps = + pillow~=11.2.1 sphinx sphinx-rtd-theme sphinxcontrib-httpdomain @@ -23,10 +24,13 @@ allowlist_externals = echo [testenv:docs-linkcheck] basepython = python3 -deps = sphinx - sphinx-rtd-theme - sphinxcontrib-httpdomain - recommonmark - lfdocs-conf - urllib3~=1.26.15 +deps = + pillow~=11.2.1 + sphinx + sphinx-rtd-theme + 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