Skip to content

Commit bd195ac

Browse files
committed
🔖 Version 3.0.0
1 parent 1521283 commit bd195ac

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

nonebot_plugin_dialectlist/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def got_rank(msg_dict: Dict[int, int]) -> List[List[Any]]:
6969
while len(rank) < plugin_config.get_num:
7070
try:
7171
max_key = max(msg_dict.items(), key=lambda x: x[1])
72-
rank.append(tuple(max_key))
72+
rank.append(list(max_key))
7373
msg_dict.pop(max_key[0])
7474
except ValueError:
7575
logger.error(

pdm.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
"nonebot-plugin-userinfo>=0.2.6",
1313
"nonebot-plugin-htmlrender>=0.3.3",
1414
"nonebot2>=2.3.2",
15-
"pillow>=10.4.0",
15+
"pillow>=11.3.0",
1616
"nonebot-plugin-uninfo>=0.1.1",
1717
]
1818
requires-python = ">=3.9,<4.0"
@@ -23,9 +23,9 @@ license = { text = "MIT" }
2323
[project.optional-dependencies]
2424
dev = [
2525
"ruff>=0.5.5",
26-
"setuptools>=71.1.0",
27-
"twine>=5.1.0",
28-
"nb-cli>=0.7.6",
26+
"setuptools>=80.9.0",
27+
"twine>=6.2.0",
28+
"nb-cli>=1.4.2",
2929
"py-spy>=0.3.14",
3030
]
3131
Test = ["nonebot-adapter-onebot>=2.4.4"]

0 commit comments

Comments
 (0)