Skip to content

Pin compiler and MKL within range for 0.15 release #1849

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
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
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
cmake_minimum_required(VERSION 3.21...3.27 FATAL_ERROR)

project(dpnp
VERSION 0.15
LANGUAGES CXX
DESCRIPTION "NumPy-like API accelerated by SYCL."
)

Expand Down
10 changes: 3 additions & 7 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{% set required_compiler_and_mkl_version = "2024.0" %}
{% set excluded_compiler_version1 = "2024.0.1" %}
{% set excluded_compiler_version2 = "2024.0.2" %}
{% set excluded_compiler_version3 = "2024.0.3" %}
{% set required_dpctl_version = "0.16.0" %}
{% set required_compiler_and_mkl_version = "2024.2.0" %}
{% set required_dpctl_version = "0.17.0a0" %}

package:
name: dpnp
Expand All @@ -27,8 +24,7 @@ requirements:
- scikit-build
build:
- {{ compiler('cxx') }}
- {{ compiler('dpcpp') }} >={{ required_compiler_and_mkl_version }},!={{ excluded_compiler_version1 }},!={{ excluded_compiler_version2 }},!={{ excluded_compiler_version3 }} # [win]
- {{ compiler('dpcpp') }} >={{ required_compiler_and_mkl_version }},!={{ excluded_compiler_version1 }},!={{ excluded_compiler_version2 }} # [linux]
- {{ compiler('dpcpp') }} {{ required_compiler_and_mkl_version }}
- sysroot_linux-64 >=2.28 # [linux]
run:
- python
Expand Down
Loading