From 8201abbd3f1cb356d0b541cb4fd964df472d0805 Mon Sep 17 00:00:00 2001 From: Christian Date: Tue, 18 Jul 2023 20:28:42 +0200 Subject: [PATCH] Update allowed python versions Considering 3.11 is already supported, there is no reason to not allow all <4.0 versions. This change is essentially the same as writing >=3.7.2,<4.0. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 65f145f..fb46525 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ packages = [{include = "novelai_api"}] "Bug Tracker" = "https://github.com/Aedial/novelai-api/issues" [tool.poetry.dependencies] -python = ">=3.7.2,<3.12" +python = "^3.7.2" aiohttp = {extras = ["speedups"], version = "^3.8.3"} argon2-cffi = "^21.3.0" PyNaCl = "^1.5.0"