From 198be19eaeccf55c394ad246773beb4e56b6cd08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 14 Sep 2025 18:32:47 -0700 Subject: [PATCH] replace async-timeout with asyncio.timeout --- aioslimproto/client.py | 4 +--- pyproject.toml | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/aioslimproto/client.py b/aioslimproto/client.py index 7c448b4..44aa627 100644 --- a/aioslimproto/client.py +++ b/aioslimproto/client.py @@ -8,7 +8,7 @@ from __future__ import annotations import asyncio -from asyncio import StreamReader, StreamWriter, create_task +from asyncio import StreamReader, StreamWriter, create_task, timeout from collections.abc import Callable from datetime import datetime import ipaddress @@ -19,8 +19,6 @@ from typing import Any from urllib.parse import parse_qsl, urlparse -from async_timeout import timeout - from .const import ( FALLBACK_CODECS, FALLBACK_MODEL, diff --git a/pyproject.toml b/pyproject.toml index dc0b6d7..c97444c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ classifiers = [ ] dependencies = [ "aiohttp>=3.9.2", - "async-timeout", "pillow", ] description = "Python module to talk to Logitech Squeezebox players directly (without Logitech server)."