diff --git a/README.rst b/README.rst index 427d42c0..2618650e 100644 --- a/README.rst +++ b/README.rst @@ -37,6 +37,12 @@ ArrayKit requires the following: What is New in ArrayKit ------------------------- +0.10.0 +............ + +Now building wheels for Python 3.13. + + 0.9.0 ............ diff --git a/setup.py b/setup.py index 86f85ccd..bcfce559 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup from pathlib import Path -AK_VERSION = '0.9.0' +AK_VERSION = '0.10.0' def get_long_description() -> str: return '''The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions. @@ -72,6 +72,7 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]: 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Typing :: Typed', ], keywords='numpy array',