Skip to content
Closed
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
2 changes: 1 addition & 1 deletion docs/requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ sphinx-autobuild==2025.8.25
sphinx-copybutton==0.5.2
sphinx-sitemap==2.9.0
sphinx-click==6.2.0
sphinx-autodoc-typehints==3.9.9
sphinx-autodoc-typehints==3.10.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

python - <<'PY'
import json, urllib.request
pkg, ver = "sphinx-autodoc-typehints", "3.10.0"
url = f"https://pypi.org/pypi/{pkg}/json"
data = json.load(urllib.request.urlopen(url))
files = data["releases"].get(ver, [])
print(f"{pkg} {ver} files:", len(files))
if not files:
    raise SystemExit("ERROR: pinned version not found on PyPI")
print("yanked flags:", {f.get("yanked", False) for f in files})
PY

Repository: DagsHub/client

Length of output: 2639


🌐 Web query:

sphinx-autodoc-typehints 3.10.0 PyPI

💡 Result:

sphinx-autodoc-typehints 3.10.0 does not exist on PyPI. The latest version is 3.9.11, released on 2026-03-24. Recent versions include 3.9.10 (2026-03-23), 3.9.9 (2026-03-20), down to 3.6.0 (2025-12-09). The project homepage is https://github.com/tox-dev/sphinx-autodoc-typehints, with releases up to 3.9.11. No mentions of 3.10.0 found in PyPI pages, GitHub releases, or web searches. sphinx-autodoc-typehints is a Sphinx extension that reads Python type hints (PEP 484) and adds type information to autodoc-generated documentation, avoiding duplication in docstrings. Install via pip install sphinx-autodoc-typehints and add "sphinx_autodoc_typehints" to extensions in conf.py. Requires Sphinx >=9.1, Python >=3.12. Set autodoc_typehints = "none" to avoid conflicts with Sphinx's built-in handling.

Citations:


🏁 Script executed:

# Verify the file exists and check its current content
cat -n docs/requirements-docs.txt | head -20

Repository: DagsHub/client

Length of output: 265


Update sphinx-autodoc-typehints to a published version.

sphinx-autodoc-typehints==3.10.0 does not exist on PyPI. The latest available version is 3.9.11. Update the requirement to a valid version before merge.

16 changes: 8 additions & 8 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
respx==0.22.0
setuptools==82.0.1
pytest==9.0.3
respx==0.23.1
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.6.0
pytest-mock==3.15.1
fiftyone==1.14.1
datasets==4.8.4
ultralytics==8.4.37
Loading