Skip to content
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

Bump MrThearMan/CI from 0.4.12 to 0.4.13 in the github-actions-dependencies group #143

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 .github/workflows/approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
permissions:
pull-requests: write
contents: write
uses: MrThearMan/CI/.github/workflows/[email protected].12
uses: MrThearMan/CI/.github/workflows/[email protected].13
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ on:

jobs:
docs:
uses: MrThearMan/CI/.github/workflows/[email protected].12
uses: MrThearMan/CI/.github/workflows/[email protected].13
with:
poetry-version: "2.0.0"
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release:
uses: MrThearMan/CI/.github/workflows/[email protected].12
uses: MrThearMan/CI/.github/workflows/[email protected].13
secrets:
pypi-token: ${{ secrets.PYPI_API_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
test:
uses: MrThearMan/CI/.github/workflows/[email protected].12
uses: MrThearMan/CI/.github/workflows/[email protected].13
with:
python-version: '["3.10", "3.11", "3.12", "3.13"]'
poetry-version: "2.0.0"
2 changes: 1 addition & 1 deletion admin_data_views/templatetags/admin_data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def add_help_text(fields: NestedDict, help_texts: NestedDict) -> dict[str, DictI
elif isinstance(value, list):
values = []
for item in value:
if not isinstance(item, (dict, list)):
if not isinstance(item, dict | list):
values.append((item, ""))
else:
res = add_help_text(item, {} if isinstance(help_text, str) else help_text)
Expand Down
4 changes: 2 additions & 2 deletions admin_data_views/typing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations

from collections.abc import ItemsView
from typing import Any, Callable, NamedTuple, TypedDict, Union
from collections.abc import Callable, ItemsView
from typing import Any, NamedTuple, TypedDict, Union

try:
from typing import NotRequired
Expand Down
Loading