Skip to content

Commit 053bca1

Browse files
authored
Pin to the lates dpctl release (#2469)
The PR pins to the lates dpctl release version `0.20.0`.
1 parent fc8174f commit 053bca1

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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-
## [0.18.0] - 06/23/2025
7+
## [0.18.0] - 06/04/2025
88

99
This release achieves 100% compliance with Python Array API specification (revision [2024.12](https://data-apis.org/array-api/2024.12/)).
1010
The release provides enhanced compatibility with NumPy 2.2.5. Window and mathematical routines are complemented by a set of new functions.

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% set max_compiler_and_mkl_version = environ.get("MAX_BUILD_CMPL_MKL_VERSION", "2026.0a0") %}
22
{% set required_compiler_and_mkl_version = "2025.0" %}
3-
{% set required_dpctl_version = "0.20.0*" %}
3+
{% set required_dpctl_version = "0.20.0" %}
44

55
{% set pyproject = load_file_data('pyproject.toml') %}
66
{% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %}

environments/dpctl_pkg.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
--index-url https://pypi.anaconda.org/dppy/label/dev/simple
2-
dpctl>=0.20.0dev0
2+
dpctl>=0.20.0

environments/dpctl_pkg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ name: Install dpctl package
22
channels:
33
- dppy/label/dev
44
dependencies:
5-
- dpctl>=0.20.0dev0
5+
- dpctl>=0.20.0

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ requires = [
55
"build>=1.2.2",
66
"cmake>=3.31.6",
77
"cython>=3.0.12",
8-
# WARNING: use only dpctl version available on PyPi
9-
"dpctl>=0.19.0",
8+
"dpctl>=0.20.0",
109
"ninja>=1.11.1; platform_system!='Windows'",
1110
# NOTE: no DPNP restriction on NumPy version, so follow NumPy's drop schedule
1211
"numpy>=1.25.0",
@@ -48,8 +47,7 @@ dependencies = [
4847
# TODO: do we have to set sycl runtime dependencies here
4948
# "dpcpp-cpp-rt>=0.59.0",
5049
# "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",
5351
"numpy>=1.25.0"
5452
]
5553
description = "Data Parallel Extension for NumPy"

0 commit comments

Comments
 (0)