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
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.13.5

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🩺 Stability & Availability | 🟠 Major | ⚑ Quick win

πŸ”Ž Supported by static analysis

πŸ€– get_repo_knowledge executed:

get_repo_knowledge DagsHub/client /tmp/coderabbit-repo-knowledge/dagshub-client-aa1863f7

Length of output: 391


🏁 Script executed:

#!/bin/bash
set -eu
printf '%s\n' '--- changed requirement files ---'
cat -n docs/requirements-docs.txt
printf '%s\n' '---'
cat -n requirements-dev.txt
printf '%s\n' '--- Python/version metadata candidates ---'
rg -n --glob '!*.lock' --glob '!dist/**' --glob '!build/**' \
  'python_requires|requires-python|python-version|3\.[0-9]+|Python [0-9]|actions/setup-python|tox|nox|pytest|sphinx' \
  pyproject.toml setup.cfg setup.py tox.ini noxfile.py .github docs README.md 2>/dev/null || true

Repository: DagsHub/client

Length of output: 8740


🌐 Web query:

PyPI sphinx-autodoc-typehints 3.13.5 pytest 9.1.1 fiftyone 1.21.0 datasets 5.0.1 Requires-Python

πŸ’‘ Result:

The Requires-Python specifications for the requested packages are as follows: - sphinx-autodoc-typehints (v3.13.5): >=3.12 [1] - pytest (v9.1.1): >=3.10 [2][3] - fiftyone (v1.21.0): >=3.10 [4][5] - datasets (v5.0.1): >=3.10.0 [6] These requirements define the minimum Python version needed to install and run each respective package version.

Citations:


🏁 Script executed:

#!/bin/bash
set -eu
printf '%s\n' '--- test workflow ---'
cat -n .github/workflows/python-package.yml
printf '%s\n' '--- docs workflow ---'
cat -n .github/workflows/docs-publish.yml
printf '%s\n' '--- setup metadata ---'
sed -n '1,95p' setup.py
printf '%s\n' '--- requirement installation references ---'
rg -n -C 3 'requirements-dev|requirements-docs|pip install|pytest|sphinx-build' .github Makefile docs/Makefile docs/make.bat 2>/dev/null || true

Repository: DagsHub/client

Length of output: 11845


Make the development requirements compatible with Python 3.9.

python-package.yml installs requirements-dev.txt on Python 3.9–3.13. pytest==9.1.1, fiftyone==1.21.0, and datasets==5.0.1 require Python 3.10 or newer, so the Python 3.9 job cannot install them. Pin compatible versions or remove Python 3.9 from the supported matrix and package metadata. Keep the documentation workflow on Python 3.12 or newer because sphinx-autodoc-typehints==3.13.5 requires it.

πŸ“ Affects 2 files
  • docs/requirements-docs.txt#L7-L7 (this comment)
  • requirements-dev.txt#L2-L2
  • requirements-dev.txt#L7-L8

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==84.0.0
pytest==9.1.1
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.7.0
pytest-mock==3.15.1
fiftyone==1.21.0
datasets==5.0.1
ultralytics==8.4.142
Loading