From 155f202270b45998f026106988c79e3fba6a3917 Mon Sep 17 00:00:00 2001 From: odrling Date: Sat, 18 Nov 2023 15:00:30 +0100 Subject: [PATCH] Unfreeze aiohttp version for python 3.12 aiohttp's latest release (3.9.0) came out with support for python 3.12 so there should be no need to freeze aiohttp to a specific version now. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 508cb300..4f13bc97 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,8 +21,7 @@ classifiers = [ ] dependencies = [ "aiofiles", - "aiohttp <4; python_version < '3.12'", - "aiohttp==3.9.0b0; python_version == '3.12'", + "aiohttp <4", "aiosqlite <=0.17.0", "asyncprawcore >=2.1, <3", "update_checker >=0.18"