File tree Expand file tree Collapse file tree 5 files changed +6
-8
lines changed Expand file tree Collapse file tree 5 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 0.18.0] - 06/23 /2025
7
+ ## [ 0.18.0] - 06/04 /2025
8
8
9
9
This release achieves 100% compliance with Python Array API specification (revision [ 2024.12] ( https://data-apis.org/array-api/2024.12/ ) ).
10
10
The release provides enhanced compatibility with NumPy 2.2.5. Window and mathematical routines are complemented by a set of new functions.
Original file line number Diff line number Diff line change 1
1
{% set max_compiler_and_mkl_version = environ.get("MAX_BUILD_CMPL_MKL_VERSION", "2026.0a0") %}
2
2
{% set required_compiler_and_mkl_version = "2025.0" %}
3
- {% set required_dpctl_version = "0.20.0* " %}
3
+ {% set required_dpctl_version = "0.20.0" %}
4
4
5
5
{% set pyproject = load_file_data('pyproject.toml') %}
6
6
{% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %}
Original file line number Diff line number Diff line change 1
1
--index-url https://pypi.anaconda.org/dppy/label/dev/simple
2
- dpctl>=0.20.0dev0
2
+ dpctl>=0.20.0
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ name: Install dpctl package
2
2
channels :
3
3
- dppy/label/dev
4
4
dependencies :
5
- - dpctl>=0.20.0dev0
5
+ - dpctl>=0.20.0
Original file line number Diff line number Diff line change @@ -5,8 +5,7 @@ requires = [
5
5
" build>=1.2.2" ,
6
6
" cmake>=3.31.6" ,
7
7
" cython>=3.0.12" ,
8
- # WARNING: use only dpctl version available on PyPi
9
- " dpctl>=0.19.0" ,
8
+ " dpctl>=0.20.0" ,
10
9
" ninja>=1.11.1; platform_system!='Windows'" ,
11
10
# NOTE: no DPNP restriction on NumPy version, so follow NumPy's drop schedule
12
11
" numpy>=1.25.0" ,
@@ -48,8 +47,7 @@ dependencies = [
48
47
# TODO: do we have to set sycl runtime dependencies here
49
48
# "dpcpp-cpp-rt>=0.59.0",
50
49
# "intel-cmplr-lib-rt>=0.59.0"
51
- # WARNING: use the latest dpctl dev version, otherwise stable w/f will fail
52
- " dpctl>=0.20.0dev0" ,
50
+ " dpctl>=0.20.0" ,
53
51
" numpy>=1.25.0"
54
52
]
55
53
description = " Data Parallel Extension for NumPy"
You can’t perform that action at this time.
0 commit comments