Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.19.0] - 2025-MM-DD
## [0.20.0] - MM/DD/2026

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security


## [0.19.0] - 2025-10-06

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

### Security

## [0.18.1] - 2025-06-24

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.21...3.27 FATAL_ERROR)

project(dpnp
VERSION 0.19
VERSION 0.20
LANGUAGES CXX
DESCRIPTION "NumPy-like API accelerated by SYCL."
)
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy:
- '1.25'
- '1.26'
c_compiler: # [linux]
- gcc # [linux]
cxx_compiler: # [linux]
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set max_compiler_and_mkl_version = environ.get("MAX_BUILD_CMPL_MKL_VERSION", "2026.0a0") %}
{% set required_compiler_and_mkl_version = "2025.0" %}
{% set required_dpctl_version = "0.21.0*" %}
{% set required_dpctl_version = "0.21.0" %}

{% set pyproject = load_file_data('pyproject.toml') %}
{% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %}
Expand Down
5 changes: 1 addition & 4 deletions dpnp/tests/test_arraycreation.py
Original file line number Diff line number Diff line change
Expand Up @@ -938,12 +938,9 @@ def test_logspace(dtype, num, endpoint):
assert_allclose(dpnp_res, np_res, rtol=1e-06)


@testing.with_requires("numpy>=1.25.0")
@pytest.mark.parametrize("axis", [0, 1])
def test_logspace_axis(axis):
if numpy.lib.NumpyVersion(numpy.__version__) < "1.25.0":
pytest.skip(
"numpy.logspace supports a non-scalar base argument since 1.25.0"
)
func = lambda xp: xp.logspace(
[2, 3], [20, 15], num=2, base=[[1, 3], [5, 7]], axis=axis
)
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ requires = [
"cmake>=3.31.6",
"cython>=3.0.12",
# WARNING: use only dpctl version available on PyPi
"dpctl>=0.19.0",
"dpctl>=0.20.0",
"ninja>=1.11.1; platform_system!='Windows'",
# NOTE: no DPNP restriction on NumPy version, so follow NumPy's drop schedule
"numpy>=1.25.0",
"numpy>=1.26.0",
"scikit-build>=0.18.1",
"setuptools>=79.0.1",
"wheel>=0.45.1",
Expand Down Expand Up @@ -51,7 +51,7 @@ dependencies = [
# "intel-cmplr-lib-rt>=0.59.0"
# WARNING: use the latest dpctl dev version, otherwise stable w/f will fail
"dpctl>=0.21.0dev0",
"numpy>=1.25.0"
"numpy>=1.26.0"
]
description = "Data Parallel Extension for NumPy"
dynamic = ["version"]
Expand Down
Loading