Skip to content

Commit 4daf8a7

Browse files
renovate[bot]Parnassius
authored andcommitted
[pypi] Update all dependencies
1 parent fad6149 commit 4daf8a7

File tree

5 files changed

+73
-71
lines changed

5 files changed

+73
-71
lines changed

Diff for: pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name = "cerbottana"
33
version = "0.1.0"
44
requires-python = ">=3.13"
55
dependencies = [
6-
"aiohttp==3.11.11",
6+
"aiohttp==3.11.13",
77
"domify==0.4.5",
88
"imageprobe==0.3.0",
99
"pokedex[asyncio] @ https://github.com/Parnassius/pokedex.git",
1010
"python-dateutil==2.9.0.post0",
11-
"sqlalchemy==2.0.37",
11+
"sqlalchemy==2.0.38",
1212
"typenv==0.2.0",
1313
]
1414

@@ -19,14 +19,14 @@ cerbottana = "cerbottana.__main__:main"
1919
dev = [
2020
"darglint==1.8.1",
2121
"freezegun==1.5.1",
22-
"mypy==1.14.1",
22+
"mypy==1.15.0",
2323
"pytest==8.3.4",
2424
"pytest-asyncio==0.25.3",
2525
"pytest-cov==6.0.0",
2626
"pytest-mock==3.14.0",
2727
"pytest-xprocess==1.0.2",
2828
"python-dotenv[cli]==1.0.1",
29-
"ruff==0.9.4",
29+
"ruff==0.9.9",
3030
"types-python-dateutil==2.9.0.20241206",
3131
]
3232

Diff for: src/cerbottana/connection.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def __init__(
5656
self.websocket: aiohttp.ClientWebSocketResponse | None = None
5757
self.connection_start: float | None = None
5858
self.tiers: dict[str, Tier] = {}
59-
self.background_tasks: set[asyncio.Task[Any]] = set() # type: ignore[misc]
59+
self.background_tasks: set[asyncio.Task[Any]] = set() # type: ignore[explicit-any]
6060

6161
async def open_connection(self) -> None:
6262
signal.signal(signal.SIGTERM, signal.getsignal(signal.SIGINT))
@@ -175,7 +175,7 @@ async def send(self, message: str) -> None:
175175
print(f">> {message}")
176176
await self.websocket.send_str(message)
177177

178-
def create_task[T]( # type: ignore[misc]
178+
def create_task[T]( # type: ignore[explicit-any]
179179
self,
180180
coro: Coroutine[Any, Any, T],
181181
*,

Diff for: src/cerbottana/plugins/translations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async def _get_translations(
2121
results: dict[tuple[str, str], set[str]] = {}
2222

2323
async with pokedex.async_session() as session:
24-
tables: dict[str, tuple[Any, Any]] = { # type: ignore[misc]
24+
tables: dict[str, tuple[Any, Any]] = { # type: ignore[explicit-any]
2525
"ability": (t.Ability, t.AbilityName),
2626
"egg_group": (t.EggGroup, t.EggGroupName),
2727
"item": (t.Item, t.ItemName),

Diff for: src/cerbottana/typedefs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"regularuser",
2121
]
2222

23-
JsonDict = dict[str, Any] # type: ignore[misc]
23+
JsonDict = dict[str, Any] # type: ignore[explicit-any]
2424

2525

2626
@dataclass

0 commit comments

Comments
 (0)