Skip to content

Commit b41b121

Browse files
authored
Backport gh-2490 (#2494)
This PR backports of #2490 from development branch to `maintenance/0.18.x`.
1 parent 93fd1fb commit b41b121

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Added
1010

11+
* Enabled support of Python 3.13 [#2490](https://github.com/IntelPython/dpnp/pull/2490)
12+
1113
### Changed
1214

1315
### Fixed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers = [
3030
"Programming Language :: Python :: 3.10",
3131
"Programming Language :: Python :: 3.11",
3232
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
3334
"Programming Language :: Python :: 3 :: Only",
3435
"Programming Language :: Python :: Implementation :: CPython",
3536
"Topic :: Software Development",
@@ -67,7 +68,7 @@ license = {text = "Apache 2.0"}
6768
maintainers = [{name = "Intel Corporation"}]
6869
name = "dpnp"
6970
readme = {file = "README.md", content-type = "text/markdown"}
70-
requires-python = ">=3.9,<3.13"
71+
requires-python = ">=3.9,<3.14"
7172

7273
[project.optional-dependencies]
7374
coverage = ["Cython", "pytest", "pytest-cov", "coverage", "tomli", "llvm"]
@@ -90,7 +91,7 @@ Repository = "https://github.com/IntelPython/dpnp.git"
9091

9192
[tool.black]
9293
line-length = 80
93-
target-version = ['py39', 'py310', 'py311', 'py312']
94+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
9495

9596
[tool.codespell]
9697
builtin = "clear,rare,informal,names"

0 commit comments

Comments
 (0)