Skip to content

Commit ec17a15

Browse files
authored
Bump the minor group with 7 updates (#150)
2 parents 5c0b640 + a88a26c commit ec17a15

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[build-system]
55
requires = [
66
"setuptools == 78.1.0",
7-
"setuptools_scm[toml] == 8.1.0",
7+
"setuptools_scm[toml] == 8.2.0",
88
"frequenz-repo-config[lib] == 0.13.2",
99
]
1010
build-backend = "setuptools.build_meta"
@@ -57,11 +57,11 @@ cli = [
5757
"asyncclick == 8.1.8",
5858
"prompt-toolkit == 3.0.50",
5959
"parsedatetime == 2.6",
60-
"tzlocal == 5.2",
60+
"tzlocal == 5.3.1",
6161
]
6262

6363
dev-flake8 = [
64-
"flake8 == 7.1.1",
64+
"flake8 == 7.2.0",
6565
"flake8-docstrings == 1.7.0",
6666
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
6767
"pydoclint == 0.6.5",
@@ -70,7 +70,7 @@ dev-flake8 = [
7070
dev-formatting = ["black == 25.1.0", "isort == 6.0.1"]
7171
dev-mkdocs = [
7272
"black == 25.1.0",
73-
"Markdown == 3.7",
73+
"Markdown == 3.8",
7474
"mike == 2.1.3",
7575
"mkdocs-gen-files == 0.5.0",
7676
"mkdocs-literate-nav == 0.6.2",
@@ -80,8 +80,8 @@ dev-mkdocs = [
8080
"frequenz-repo-config[lib] == 0.13.2",
8181
]
8282
dev-mypy = [
83-
"mypy == 1.14.1",
84-
"types-Markdown == 3.7.0.20241204",
83+
"mypy == 1.15.0",
84+
"types-Markdown == 3.8.0.20250413",
8585
# For checking the noxfile, docs/ script, and tests
8686
"frequenz-client-dispatch[cli,dev-mkdocs,dev-noxfile,dev-pytest]",
8787
"grpc-stubs == 1.53.0.5",
@@ -102,7 +102,7 @@ dev-pytest = [
102102
"pytest-asyncio == 0.26.0",
103103
"async-solipsism == 0.7",
104104
"time-machine == 2.16.0",
105-
"hypothesis == 6.124.9",
105+
"hypothesis == 6.131.0",
106106
"frequenz-client-dispatch[cli]",
107107
]
108108
dev = [

src/frequenz/client/dispatch/__main__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,7 @@ async def create(
425425
click.echo("Dispatch created.")
426426

427427

428-
# We could fix the mypy error by using ", /", but this causes issues with
429-
# the click decorators. We can ignore the error here.
430-
@cli.command() # type: ignore[arg-type]
428+
@cli.command()
431429
@click.argument("microgrid-id", required=True, type=int)
432430
@click.argument("dispatch_id", type=int)
433431
@click.option("--start-time", type=FuzzyDateTime())
@@ -441,6 +439,7 @@ async def create(
441439
@click.pass_context
442440
async def update(
443441
ctx: click.Context,
442+
/,
444443
microgrid_id: int,
445444
dispatch_id: int,
446445
**new_fields: dict[str, Any],

0 commit comments

Comments
 (0)