Skip to content
Draft
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 conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy:
- '1.26'
- '2.0'
c_compiler: # [linux]
- gcc # [linux]
cxx_compiler: # [linux]
Expand Down
1 change: 0 additions & 1 deletion dpnp/linalg/dpnp_iface_linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1713,7 +1713,6 @@ def solve(a, b):
b_shape = b.shape
b_ndim = b.ndim

# compatible with numpy>=2.0
if b_ndim == 0:
raise ValueError("b must have at least one dimension")
if b_ndim == 1:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ requires = [
"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.26.0",
"numpy>=2.0.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.26.0"
"numpy>=2.0.0"
]
description = "Data Parallel Extension for NumPy"
dynamic = ["version"]
Expand Down
Loading