Skip to content

Commit ba47162

Browse files
authored
Merge pull request #2192 from IntelPython/bump-minimum-numpy-version
Bump minimum NumPy version in `pyproject.toml`
2 parents 714964f + 3600b89 commit ba47162

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Added
1010
* `dpctl.SyclQueue.copy` and `dpctl.SyclQueue.copy_async` methods [gh-2273](https://github.com/IntelPython/dpctl/pull/2273)
1111

12-
### Change
12+
### Changed
13+
* Bump minimum NumPy version to 1.26 [gh-2192](https://github.com/IntelPython/dpctl/pull/2192)
1314
* Rewrote USM Python examples into a single example [gh-2292](https://github.com/IntelPython/dpctl/pull/2292)
1415

1516
### Fixed

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.23'
2+
- '1.26'
33
c_compiler: # [linux]
44
- gcc # [linux]
55
cxx_compiler: # [linux]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ requires = [
99
"ninja>=1.11.1; platform_system!='Windows'",
1010
"cmake>=3.29.0",
1111
"cython>=3.0.10",
12-
"numpy >=1.23",
12+
"numpy >=1.26.0",
1313
# WARNING: check with doc how to upgrade
1414
"versioneer[toml]==0.29"
1515
]
@@ -44,7 +44,7 @@ dependencies = [
4444
# TODO: do we have to set sycl runtime dependencies here
4545
# "dpcpp-cpp-rt>=0.59.0",
4646
# "intel-cmplr-lib-rt>=0.59.0"
47-
"numpy>=1.23.0"
47+
"numpy>=2.0.0"
4848
]
4949
description = "A lightweight Python wrapper for a subset of SYCL."
5050
dynamic = ["version"]

0 commit comments

Comments
 (0)