Skip to content

[devel] ci: refresh dev dependencies #2803

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

Merged
merged 1 commit into from
Jul 15, 2025
Merged
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 tests/pip-compile.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was autogenerated by uv via the following command:
# uv pip compile --universal --output-file tests/pip-compile.txt tests/pip-compile.in
uv==0.7.19
uv==0.7.20
# via -r tests/pip-compile.in
2 changes: 1 addition & 1 deletion tests/static.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was autogenerated by uv via the following command:
# uv pip compile --universal --output-file tests/static.txt tests/static.in
ruff==0.12.2
ruff==0.12.3
# via -r tests/static.in
4 changes: 2 additions & 2 deletions tests/typing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ argcomplete==3.6.2
# via nox
attrs==25.3.0
# via nox
certifi==2025.6.15
certifi==2025.7.9
# via requests
cffi==1.17.1
# via
Expand Down Expand Up @@ -85,7 +85,7 @@ typer==0.16.0
# via -r tests/tag.in
typer-slim==0.16.0
# via -r tests/../hacking/pr_labeler/requirements.txt
types-docutils==0.21.0.20250604
types-docutils==0.21.0.20250710
Copy link
Contributor

Choose a reason for hiding this comment

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

@felixfontein Hi, I'm seeing this in the typing session:

nox > mypy hacking/pr_labeler/pr_labeler hacking/tagger/tag.py noxfile.py docs/bin/find-plugin-refs.py docs/bin/clone-core.py tests/checkers/rst-yamllint.py
tests/checkers/rst-yamllint.py:277: error: Argument 3 to "read" of "Reader" has incompatible type "dict[str, Any]"; expected "Values"  [arg-type]
Found 1 error in 1 file (checked 14 source files)
nox > Command mypy hacking/pr_labeler/pr_labeler hacking/tagger/tag.py noxfile.py docs/bin/find-plugin-refs.py docs/bin/clone-core.py tests/checkers/rst-yamllint.py failed with exit code 1

Looks like publisher.settings is being passed as dict[str, Any] to read here: https://github.com/ansible/ansible-documentation/blob/0408da36a53d0f61c4e86b7b444b2fbb6a42d1ed/tests/checkers/rst-yamllint.py#L277C53-L277C71

Would you mind taking a look? I'm not as familiar with docutils but can try to dig into it later today or tomorrow if you're not around. Thanks!

Copy link
Collaborator

Choose a reason for hiding this comment

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

That's a bug in the docutils types (which are maintained independently from docutils itself). I added type: ignore to these places in antsibull-docs and antslbull-docutils.

This is one reason why we should get #2745 merged soon, to no longer have to care about this in this repo.

# via -r tests/typing.in
typing-extensions==4.14.1
# via
Expand Down
Loading