From 9ec5034c2d1eb14f62290447bc9dba133da8b8e1 Mon Sep 17 00:00:00 2001 From: Brian Guarraci Date: Sat, 10 Feb 2024 17:48:41 +0000 Subject: [PATCH] min python version now 3.9 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 71a0f22..13a20e9 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='klongpy', packages=find_packages(), - version='0.6.4', + version='0.6.5', description='High-Performance Klong array language with rich Python integration.', author='Brian Guarraci', license='MIT', @@ -38,7 +38,7 @@ "License :: OSI Approved :: MIT License" ], install_requires=['numpy~=1.26.4'], - python_requires='<3.12,>=3.8', + python_requires='<3.12,>=3.9', extras_require=extra_requires, include_package_data=True, zip_safe=False,