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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.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
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
2 changes: 1 addition & 1 deletion environments/dpctl_pkg.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
--index-url https://pypi.anaconda.org/dppy/label/dev/simple
dpctl>=0.21.0dev0
dpctl>=0.21.0
2 changes: 1 addition & 1 deletion environments/dpctl_pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name: Install dpctl package
channels:
- dppy/label/dev
dependencies:
- dpctl>=0.21.0dev0
- dpctl>=0.21.0
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ requires = [
"build>=1.2.2",
"cmake>=3.31.6",
"cython>=3.0.12",
# WARNING: use only dpctl version available on PyPi
"dpctl>=0.19.0",
"dpctl>=0.21.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 @@ -50,8 +49,8 @@ dependencies = [
# "dpcpp-cpp-rt>=0.59.0",
# "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"
"dpctl>=0.21.0",
"numpy>=1.26.0"
]
description = "Data Parallel Extension for NumPy"
dynamic = ["version"]
Expand Down
Loading