Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sphinx==7.3.7
furo==2024.5.6
sphinx-autobuild==2024.4.16
sphinx==9.1.0
furo==2025.12.19
sphinx-autobuild==2025.8.25
sphinx-copybutton==0.5.2
sphinx-sitemap==2.6.0
sphinx-click==5.0.1
sphinx-autodoc-typehints==2.3.0
sphinx-sitemap==2.9.0
sphinx-click==6.2.0
sphinx-autodoc-typehints==3.9.3
Comment on lines +1 to +7
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== Project Python constraints =="
fd -HI 'pyproject.toml|setup.cfg|setup.py|tox.ini|noxfile.py' | sed 's/^/ - /'
rg -n -C2 'requires-python|python_requires|envlist|3\.[0-9]+' \
  pyproject.toml setup.cfg setup.py tox.ini noxfile.py 2>/dev/null || true

echo
echo "== PyPI metadata (latest + Requires-Python) for bumped docs packages =="
python - <<'PY'
import json, urllib.request
pkgs = [
    "sphinx","furo","sphinx-autobuild",
    "sphinx-sitemap","sphinx-click","sphinx-autodoc-typehints"
]
for p in pkgs:
    data = json.load(urllib.request.urlopen(f"https://pypi.org/pypi/{p}/json"))
    info = data["info"]
    print(f"{p:24} latest={info['version']:12} requires_python={info.get('requires_python')}")
PY

Repository: DagsHub/client

Length of output: 3723


🌐 Web query:

Sphinx 9 Python version requirements minimum compatibility

💡 Result:

  • Sphinx 9.0.x (e.g., 9.0.0, released Nov 30, 2025) requires Python ≥ 3.11. [1]
  • Sphinx 9.1.x (current latest shown on PyPI: 9.1.0, released Dec 31, 2025) requires Python ≥ 3.12 and explicitly drops Python 3.11 support. [2][3]

So, for “Sphinx 9” overall:

  • Minimum you might see in the 9.x line: Python 3.11 (only for 9.0.x). [1]
  • Minimum for the latest 9.x releases: Python 3.12+. [2][3]

This aligns with Sphinx’s published Python support policy (from late 2025, baseline moves to 3.12+). [4]

Sources: [1] [2] [3] [4]


Sphinx 9.1.0 requires Python 3.12+ but project supports Python 3.9+.

Sphinx 9.1.0 requires Python ≥ 3.12, while the project declares python_requires=">=3.9" in setup.py. This will break documentation builds on Python 3.9, 3.10, and 3.11. Either upgrade the project's minimum Python version to 3.12+, downgrade to Sphinx 9.0.x (requires 3.11+, still incompatible with 3.9–3.10), or pin Sphinx to an older major version compatible with the declared baseline.

14 changes: 7 additions & 7 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
setuptools==80.9.0
pytest==8.3.5
setuptools==82.0.0
pytest==9.0.2
respx==0.22.0
pytest-git==1.8.0
pytest-env==1.1.5
pytest-mock==3.14.0
fiftyone==1.5.2
datasets==3.6.0
ultralytics==8.3.237
pytest-env==1.5.0
pytest-mock==3.15.1
fiftyone==1.13.2
datasets==4.6.1
ultralytics==8.4.19
Loading