Skip to content

Bump types-docutils from 0.21.0.20250514 to 0.21.0.20250516 #13564

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ lint = [
"sphinx-lint>=0.9",
"types-colorama==0.4.15.20240311",
"types-defusedxml==0.7.0.20250516",
"types-docutils==0.21.0.20250514",
"types-docutils==0.21.0.20250516",
"types-Pillow==10.2.0.20240822",
"types-Pygments==2.19.0.20250516",
"types-requests==2.32.0.20250515", # align with requests
Expand Down Expand Up @@ -165,7 +165,7 @@ type-stubs = [
# align with versions used elsewhere
"types-colorama==0.4.15.20240311",
"types-defusedxml==0.7.0.20250516",
"types-docutils==0.21.0.20250514",
"types-docutils==0.21.0.20250516",
"types-Pillow==10.2.0.20240822",
"types-Pygments==2.19.0.20250516",
"types-requests==2.32.0.20250515",
Expand Down
2 changes: 1 addition & 1 deletion sphinx/builders/html/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def __init__(self, app: Sphinx, env: BuildEnvironment) -> None:
source_class=DocTreeInput,
destination=StringOutput(encoding='unicode'),
)
pub.get_settings(output_encoding='unicode', traceback=True)
pub.get_settings(output_encoding='unicode', traceback=True) # type: ignore[no-untyped-call]
self._publisher = pub

def init(self) -> None:
Expand Down
2 changes: 1 addition & 1 deletion sphinx/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,5 +186,5 @@ def create_publisher(app: Sphinx, filetype: str) -> Publisher:
# Propagate exceptions by default when used programmatically:
defaults = {'traceback': True, **app.env.settings}
# Set default settings
pub.get_settings(**defaults)
pub.get_settings(**defaults) # type: ignore[no-untyped-call]
return pub
Loading