Skip to content

Commit 801e8a0

Browse files
author
Diptorup Deb
committed
Update configs to require numba>=0.60
1 parent 508fdf5 commit 801e8a0

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## Unreleased
8+
9+
### Added
10+
* Support for Numba 0.60
11+
712
## [0.23.0] - 2024-05-28
813

914
### Fixed

environment/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- libffi
1010
- gxx_linux-64
1111
- dpcpp_linux-64>=2024.0,!=2024.0.1,!=2024.0.2
12-
- numba==0.59*
12+
- numba==0.60*
1313
- dpctl
1414
- dpnp
1515
- dpcpp-llvm-spirv

environment/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- libffi
1010
- gxx_linux-64
1111
- dpcpp_linux-64>=2024.0,!=2024.0.1,!=2024.0.2
12-
- numba==0.59*
12+
- numba==0.60*
1313
- scikit-build>=0.15*
1414
- cmake>=3.26*
1515
- dpctl>=0.16*

environment/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ channels:
77
- nodefaults
88
dependencies:
99
- libffi
10-
- numba==0.59*
10+
- numba==0.60*
1111
- dpctl>=0.16*
1212
- dpnp>=0.14*
1313
- dpcpp-llvm-spirv

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ requires = [
1111
# We need dpctl for UsmNdArray integration for dpcpp code
1212
"dpctl>=0.16.1",
1313
# We need numba for runtime cpp headers
14-
"numba>=0.59.0,<0.60.0a0",
14+
"numba>=0.60.0",
1515
"llvmlite>=0.42.0",
1616
# Do we need dpnp at build time?
1717
"dpnp >=0.14",
@@ -40,9 +40,9 @@ dependencies = [
4040
# This restrictions are for dependabot, actual restrictions are set with
4141
# conda. TODO: populate it during build process
4242
# TODO: do we have to set sycl runtime dependencies here
43-
# "dpcpp-cpp-rt>=0.59.0",
44-
# "intel-cmplr-lib-rt>=0.59.0"
45-
"numba>=0.59.0",
43+
# "dpcpp-cpp-rt>=xxxx",
44+
# "intel-cmplr-lib-rt>=xxxx"
45+
"numba>=0.60.0",
4646
"llvmlite>=0.42.0",
4747
"dpctl>=0.16.1",
4848
"dpnp>=0.14.0",

0 commit comments

Comments
 (0)