From ff05fbf6600569f7baea60c68a736890f0bdd3de Mon Sep 17 00:00:00 2001 From: Parnassius Date: Sat, 3 Feb 2024 12:04:13 +0100 Subject: [PATCH] Remove pinned dependency on yarl==1.9.2 yarl 1.9.2 provides wheels only for Python versions up to 3.11, making Wavelink installation on Python 3.12 harder than it should be on setups without build deps. Changing the requirement to `yarl>=1.9.2` fixes this --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b5d12bd7..4393996d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ aiohttp>=3.7.4,<4 discord.py>=2.0.1 -yarl==1.9.2 +yarl>=1.9.2 async_timeout \ No newline at end of file