diff --git a/pyproject.toml b/pyproject.toml index 8176424..18e0dab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,6 +45,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] # Python dependencies required for use. @@ -73,7 +74,7 @@ python_classes = ["Test*"] python_functions = ["test_*"] [tool.black] -target-version = ['py38', 'py39', 'py310', 'py311', 'py312'] +target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313'] include = '\.pyi?$' extend-exclude = ''' /( diff --git a/setup.py b/setup.py index 2f5c361..0c38107 100644 --- a/setup.py +++ b/setup.py @@ -184,7 +184,7 @@ def run(self): "cmake>=3.18", ], classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", @@ -192,6 +192,7 @@ def run(self): "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: C++", "Topic :: Scientific/Engineering :: Artificial Intelligence", ],