diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ec0a5fe227c..da7a48978820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +* Enabled support of Python 3.13 [#2490](https://github.com/IntelPython/dpnp/pull/2490) + ### Changed ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 36e7fe3ec359..589b07e6db19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development", @@ -67,7 +68,7 @@ license = {text = "Apache 2.0"} maintainers = [{name = "Intel Corporation"}] name = "dpnp" readme = {file = "README.md", content-type = "text/markdown"} -requires-python = ">=3.9,<3.13" +requires-python = ">=3.9,<3.14" [project.optional-dependencies] coverage = ["Cython", "pytest", "pytest-cov", "coverage", "tomli", "llvm"] @@ -90,7 +91,7 @@ Repository = "https://github.com/IntelPython/dpnp.git" [tool.black] line-length = 80 -target-version = ['py39', 'py310', 'py311', 'py312'] +target-version = ['py39', 'py310', 'py311', 'py312', 'py313'] [tool.codespell] builtin = "clear,rare,informal,names"