Skip to content
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

[DO NOT MERGE] Add hand-pinning of runtime #1641

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set required_compiler_version = "2024.0" %}
{% set excluded_compiler_version1 = "2024.0.1" %}
{% set excluded_compiler_version2 = "2024.0.2" %}
{% set required_compiler_version = "2024.1.0" %}
{% set runtime_lower_bound = required_compiler_version %}
{% set runtime_upper_bound = "2024.2.0a0" %}

package:
name: dpctl
Expand All @@ -18,7 +18,7 @@ build:
requirements:
build:
- {{ compiler('cxx') }}
- {{ compiler('dpcpp') }} >={{ required_compiler_version }},!={{ excluded_compiler_version1 }},!={{ excluded_compiler_version2 }} # [not osx]
- {{ compiler('dpcpp') }} {{ required_compiler_version }}
- sysroot_linux-64 >=2.28 # [linux]
host:
- setuptools
Expand All @@ -33,7 +33,7 @@ requirements:
run:
- python
- {{ pin_compatible('numpy', min_pin='x.x', max_pin='x') }}
- dpcpp-cpp-rt >={{ required_compiler_version }}
- dpcpp-cpp-rt >={{ runtime_lower_bound }},<{{ runtime_upper_bound }}
- level-zero # [linux]

test:
Expand Down