Skip to content

Commit

Permalink
Support Python 3.12 with upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
briangu committed Apr 15, 2024
1 parent e1c07ed commit 35f8c32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
'rocm-5-0': ["cupy-rocm-5-0"],
'rocm-4-3': ["cupy-rocm-4-3"],
'repl': ["colorama==0.4.6"],
'web': ["aiohttp==3.8.5"],
'db': ["pandas==2.2.0","duckdb==0.9.2"],
'ws': ["websockets==11.0.3"],
'web': ["aiohttp==3.9.4"],
'db': ["pandas==2.2.2","duckdb==0.10.1"],
'ws': ["websockets==12.0"],
}

# full feature set extras
Expand All @@ -27,7 +27,7 @@
setup(
name='klongpy',
packages=find_packages(),
version='0.6.6',
version='0.6.7',
description='High-Performance Klong array language with rich Python integration.',
author='Brian Guarraci',
license='MIT',
Expand All @@ -38,7 +38,7 @@
"License :: OSI Approved :: MIT License"
],
install_requires=['numpy~=1.26.4'],
python_requires='<3.12,>=3.9',
python_requires='<3.13,>=3.9',
extras_require=extra_requires,
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 35f8c32

Please sign in to comment.