Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 2 additions & 3 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ formats: []
python:
version: 3.8
install:
- requirements: docs/requirements_for_rtd.txt
- method: pip
path: .
#extra_requirements:
# - docs
extra_requirements:
- docs
1 change: 0 additions & 1 deletion docs/requirements_for_rtd.txt

This file was deleted.

3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ dev = [
"prospector==1.11.0",
"pytest==7.3.1",
]
docs = [
"sphinx<7.2",
Copy link

Copilot AI Jan 19, 2026

Choose a reason for hiding this comment

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

The version constraint "sphinx<7.2" appears overly restrictive. Consider using a more standard constraint like "sphinx>=4.0" or "sphinx>=4.0,<9.0" to allow for newer versions while maintaining compatibility. The current constraint would prevent using Sphinx 7.2 or later, which may include important bug fixes and features.

Suggested change
"sphinx<7.2",
"sphinx>=4.0,<9.0",

Copilot uses AI. Check for mistakes.
]

[tool.ruff.format]
quote-style = 'single'