Skip to content

Commit 6868bf0

Browse files
committed
chore: fix update regressions
1 parent 5093726 commit 6868bf0

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

pyproject.toml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ dependencies = [
8686
"pytz>=2022.6",
8787
"pyzmq>=25.0.0",
8888
"regex>=2022.4.0",
89-
"rich>=12.4.0",
90-
"rich-click>=1.8.0",
89+
"rich>=14.0.0",
90+
"rich-click>=1.8.9",
9191
"ruamel.yaml>=0.18.0,<0.19.0",
9292
"sortedcontainers>=2.4.0",
9393
"SQLAlchemy>=2.0.20",
@@ -251,7 +251,9 @@ dev_testing = [
251251
"types-Pygments",
252252
"types-Markdown",
253253
"types-humanfriendly",
254-
"types-setuptools",
254+
"types-colorama",
255+
"types-decorator",
256+
"types-pexpect",
255257
"sqlalchemy-stubs"
256258
]
257259

@@ -277,7 +279,9 @@ dev_utils = [
277279
"types-Pygments",
278280
"types-Markdown",
279281
"types-humanfriendly",
280-
"types-setuptools",
282+
"types-colorama",
283+
"types-decorator",
284+
"types-pexpect",
281285
"sqlalchemy-stubs",
282286
"wheel"
283287
]
@@ -495,6 +499,7 @@ module = [
495499
"networkx",
496500
"orjson.*",
497501
"patoolib.*",
502+
"pkg_resources.*",
498503
"pyarrow.*",
499504
"pygraphviz",
500505
"regex.*",

src/kiara/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,4 @@ def get_version() -> str:
162162
if __version__ is None:
163163
__version__ = "unknown"
164164

165-
return __version__
165+
return __version__ # type: ignore

src/kiara/utils/cli/rich_click.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def rich_format_operation_help(
262262

263263
# Column for a metavar, if we have one
264264
metavar = Text(style=STYLE_METAVAR, overflow="fold")
265-
metavar_str = param.make_metavar()
265+
metavar_str = param.make_metavar(ctx)
266266

267267
# Do it ourselves if this is a positional argument
268268
if type(param) is click.core.Argument and metavar_str == param.name.upper(): # type: ignore

0 commit comments

Comments
 (0)