From d0520abd98cd5670a92976b7e8a054bee014bcb6 Mon Sep 17 00:00:00 2001 From: Brian Guarraci Date: Sat, 10 Feb 2024 17:38:23 +0000 Subject: [PATCH] downgrade numpy for now, bump duckdb to 0.9.2 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 637fd29..ba3c839 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ 'rocm-4-3': ["cupy-rocm-4-3"], 'repl': ["colorama==0.4.6"], 'web': ["aiohttp==3.8.5"], - 'db': ["pandas==2.0.3","duckdb==0.8.1"], + 'db': ["pandas==2.0.3","duckdb==0.9.2"], 'ws': ["websockets==11.0.3"], } @@ -27,7 +27,7 @@ setup( name='klongpy', packages=find_packages(), - version='0.6.2', + version='0.6.3', description='High-Performance Klong array language with rich Python integration.', author='Brian Guarraci', license='MIT', @@ -37,7 +37,7 @@ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License" ], - install_requires=['numpy~=1.26.4'], + install_requires=['numpy~=1.24.4'], python_requires='<3.12,>=3.9', extras_require=extra_requires, include_package_data=True,