Skip to content

Commit 536d260

Browse files
authored
Start dpnp 0.20 development (#2612)
The PR initiates `0.20` development.
1 parent 6edcb4c commit 536d260

File tree

6 files changed

+23
-12
lines changed

6 files changed

+23
-12
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,22 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.19.0] - 2025-MM-DD
7+
## [0.20.0] - MM/DD/2026
8+
9+
### Added
10+
11+
### Changed
12+
13+
### Deprecated
14+
15+
### Removed
16+
17+
### Fixed
18+
19+
### Security
20+
21+
22+
## [0.19.0] - 2025-10-06
823

924
This release introduces a set of new `dpnp.ndarray` methods and SciPy-compatible functions to improve CuPy compatibility.
1025
It also enhances the performance of existing functions and improves documentation completeness.
@@ -77,7 +92,6 @@ This release is compatible with NumPy 2.3.3.
7792
* Added missing permission definition in `Autoupdate pre-commit` GitHub workflow [#2591](https://github.com/IntelPython/dpnp/pull/2591)
7893
* Resolved issue with the cyclic import in `linalg` submodule [#2608](https://github.com/IntelPython/dpnp/pull/2608)
7994

80-
### Security
8195

8296
## [0.18.1] - 2025-06-24
8397

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.21...3.27 FATAL_ERROR)
22

33
project(dpnp
4-
VERSION 0.19
4+
VERSION 0.20
55
LANGUAGES CXX
66
DESCRIPTION "NumPy-like API accelerated by SYCL."
77
)

conda-recipe/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
numpy:
2-
- '1.25'
2+
- '1.26'
33
c_compiler: # [linux]
44
- gcc # [linux]
55
cxx_compiler: # [linux]

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% set max_compiler_and_mkl_version = environ.get("MAX_BUILD_CMPL_MKL_VERSION", "2026.0a0") %}
22
{% set required_compiler_and_mkl_version = "2025.0" %}
3-
{% set required_dpctl_version = "0.21.0*" %}
3+
{% set required_dpctl_version = "0.21.0" %}
44

55
{% set pyproject = load_file_data('pyproject.toml') %}
66
{% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %}

dpnp/tests/test_arraycreation.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -938,12 +938,9 @@ def test_logspace(dtype, num, endpoint):
938938
assert_allclose(dpnp_res, np_res, rtol=1e-06)
939939

940940

941+
@testing.with_requires("numpy>=1.25.0")
941942
@pytest.mark.parametrize("axis", [0, 1])
942943
def test_logspace_axis(axis):
943-
if numpy.lib.NumpyVersion(numpy.__version__) < "1.25.0":
944-
pytest.skip(
945-
"numpy.logspace supports a non-scalar base argument since 1.25.0"
946-
)
947944
func = lambda xp: xp.logspace(
948945
[2, 3], [20, 15], num=2, base=[[1, 3], [5, 7]], axis=axis
949946
)

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ requires = [
66
"cmake>=3.31.6",
77
"cython>=3.0.12",
88
# WARNING: use only dpctl version available on PyPi
9-
"dpctl>=0.19.0",
9+
"dpctl>=0.20.0",
1010
"ninja>=1.11.1; platform_system!='Windows'",
1111
# NOTE: no DPNP restriction on NumPy version, so follow NumPy's drop schedule
12-
"numpy>=1.25.0",
12+
"numpy>=1.26.0",
1313
"scikit-build>=0.18.1",
1414
"setuptools>=79.0.1",
1515
"wheel>=0.45.1",
@@ -51,7 +51,7 @@ dependencies = [
5151
# "intel-cmplr-lib-rt>=0.59.0"
5252
# WARNING: use the latest dpctl dev version, otherwise stable w/f will fail
5353
"dpctl>=0.21.0dev0",
54-
"numpy>=1.25.0"
54+
"numpy>=1.26.0"
5555
]
5656
description = "Data Parallel Extension for NumPy"
5757
dynamic = ["version"]

0 commit comments

Comments
 (0)