Skip to content

Commit cedd0d1

Browse files
authored
Add support of python 3.13 (#2490)
The PR implements changes into the dpnp package metadata to enable support of Python 3.13.
1 parent 03e5ba0 commit cedd0d1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Added
1010

1111
* Added `--target-cuda[=ARCH]` option to replace the deprecated `--target=cuda`, allowing users to build for CUDA devices with optional architecture selection using [CodePlay oneAPI plug-in](https://developer.codeplay.com/products/oneapi/nvidia/home/) [#2478](https://github.com/IntelPython/dpnp/pull/2478)
12+
* Enabled support of Python 3.13 [#2490](https://github.com/IntelPython/dpnp/pull/2490)
1213

1314
### Changed
1415

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Programming Language :: Python :: 3 :: Only",
3536
"Programming Language :: Python :: Implementation :: CPython",
3637
"Topic :: Software Development",
@@ -69,7 +70,7 @@ license = {text = "Apache 2.0"}
6970
maintainers = [{name = "Intel Corporation"}]
7071
name = "dpnp"
7172
readme = {file = "README.md", content-type = "text/markdown"}
72-
requires-python = ">=3.9,<3.13"
73+
requires-python = ">=3.9,<3.14"
7374

7475
[project.optional-dependencies]
7576
coverage = ["Cython", "pytest", "pytest-cov", "coverage", "tomli", "llvm"]
@@ -92,7 +93,7 @@ Repository = "https://github.com/IntelPython/dpnp.git"
9293

9394
[tool.black]
9495
line-length = 80
95-
target-version = ['py39', 'py310', 'py311', 'py312']
96+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
9697

9798
[tool.codespell]
9899
builtin = "clear,rare,informal,names"

0 commit comments

Comments
 (0)