Skip to content
Open
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Change
### Changed
* Bump minimum NumPy version to 1.26 [gh-2192](https://github.com/IntelPython/dpctl/pull/2192)

### Fixed

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.23'
- '1.26'
c_compiler: # [linux]
- gcc # [linux]
cxx_compiler: # [linux]
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 = [
"ninja>=1.11.1; platform_system!='Windows'",
"cmake>=3.29.0",
"cython>=3.0.10",
"numpy >=1.23",
"numpy >=1.26.0",
Comment thread
ndgrigorian marked this conversation as resolved.
# WARNING: check with doc how to upgrade
"versioneer[toml]==0.29"
]
Expand Down Expand Up @@ -44,7 +44,7 @@ dependencies = [
# TODO: do we have to set sycl runtime dependencies here
# "dpcpp-cpp-rt>=0.59.0",
# "intel-cmplr-lib-rt>=0.59.0"
"numpy>=1.23.0"
"numpy>=2.0.0"
]
description = "A lightweight Python wrapper for a subset of SYCL."
dynamic = ["version"]
Expand Down
Loading