Skip to content

Commit 11f4a02

Browse files
authored
Bump the minor group with 10 updates (#216)
2 parents 53a310e + e1ebf78 commit 11f4a02

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ email = "[email protected]"
5555

5656
[project.optional-dependencies]
5757
cli = [
58-
"asyncclick == 8.1.8",
58+
"asyncclick == 8.2.2.2",
5959
"prompt-toolkit == 3.0.52",
6060
"parsedatetime == 2.6",
6161
"tzlocal == 5.3.1",
@@ -68,26 +68,26 @@ dev-flake8 = [
6868
"pydoclint == 0.7.3",
6969
"pydocstyle == 6.3.0",
7070
]
71-
dev-formatting = ["black == 25.1.0", "isort == 6.0.1"]
71+
dev-formatting = ["black == 25.9.0", "isort == 6.0.1"]
7272
dev-mkdocs = [
73-
"black == 25.1.0",
74-
"Markdown == 3.8.2",
73+
"black == 25.9.0",
74+
"Markdown == 3.9",
7575
"mike == 2.1.3",
7676
"mkdocs-gen-files == 0.5.0",
7777
"mkdocs-literate-nav == 0.6.2",
7878
"frequenz-api-dispatch == 1.0.0-rc3",
79-
"mkdocs-macros-plugin == 1.3.9",
79+
"mkdocs-macros-plugin == 1.4.0",
8080
"mkdocs-material == 9.6.18",
8181
"mkdocstrings[python] == 0.30.0",
8282
"frequenz-repo-config[lib] == 0.13.5",
8383
]
8484
dev-mypy = [
85-
"mypy == 1.17.1",
86-
"types-Markdown == 3.8.0.20250809",
85+
"mypy == 1.18.2",
86+
"types-Markdown == 3.9.0.20250906",
8787
# For checking the noxfile, docs/ script, and tests
8888
"frequenz-client-dispatch[cli,dev-mkdocs,dev-noxfile,dev-pytest]",
8989
"grpc-stubs == 1.53.0.6",
90-
"types-protobuf == 6.30.2.20250703",
90+
"types-protobuf == 6.32.1.20250918",
9191
"types-python-dateutil == 2.9.0.20250822",
9292
]
9393
dev-noxfile = ["nox == 2025.5.1", "frequenz-repo-config[lib] == 0.13.5"]
@@ -100,11 +100,11 @@ dev-pylint = [
100100
dev-pytest = [
101101
"pytest == 8.4.1",
102102
"frequenz-repo-config[extra-lint-examples] == 0.13.5",
103-
"pytest-mock == 3.14.1",
103+
"pytest-mock == 3.15.1",
104104
"pytest-asyncio == 1.2.0",
105105
"async-solipsism == 0.8",
106-
"time-machine == 2.16.0",
107-
"hypothesis == 6.136.8",
106+
"time-machine == 2.19.0",
107+
"hypothesis == 6.140.2",
108108
"frequenz-client-dispatch[cli]",
109109
]
110110
dev = [

src/frequenz/client/dispatch/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
import asyncio
77
import os
8+
import shlex
89
from datetime import datetime, timezone
910
from pprint import pformat
1011
from typing import Any, List
@@ -671,7 +672,7 @@ async def display_help() -> None:
671672
params = (
672673
["--url", url, "--auth-key", auth_key]
673674
+ (["--sign-secret", sign_secret] if sign_secret else [])
674-
+ click.parser.split_arg_string(user_input)
675+
+ shlex.split(user_input)
675676
)
676677

677678
try:

0 commit comments

Comments
 (0)