From aa871faea0a3b9b3050205581a9c4f72fdd61f86 Mon Sep 17 00:00:00 2001 From: Steve Reiner Date: Mon, 16 Sep 2024 19:10:52 -0400 Subject: [PATCH] Allow python 3.12 again Should put back allowing python 3.12 that relik 1.0.7 prevents. Retesting on ubuntu with fresh python 3.12 install, relik 1.0.6 was fine. Issue #14 on linux was just messed up python 3,12 env. Issue #14 and #15 windows overflow on all python versions needs the csv.field_size_limit change. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8f2cfa9..672455f 100644 --- a/setup.py +++ b/setup.py @@ -130,7 +130,7 @@ def fix_url_dependencies(req: str) -> str: ], install_requires=install_requirements, extras_require=extras, - python_requires=">=3.10,<3.12", + python_requires=">=3.10", find_links=find_links, entry_points={ "console_scripts": ["relik = relik.cli.cli:app"],