Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.

Commit c63772d

Browse files
committed
Update to 2024.2 and conda-forge
1 parent 868fc9f commit c63772d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/conda-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
build:
2020
strategy:
2121
matrix:
22-
python: ["3.9", "3.10", "3.11"]
22+
python: ["3.9", "3.10", "3.11", "3.12"]
2323
os: ["ubuntu-latest", "windows-latest"]
2424
runs-on: ${{ matrix.os }}
2525
defaults:
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Build conda package
4949
env:
50-
CHANNELS: -c intel -c conda-forge --override-channels
50+
CHANNELS: -c conda-forge --override-channels
5151
run: conda build --python ${{ matrix.python }} ${{ env.CHANNELS }} conda-recipe
5252

5353
- name: Upload artifact

conda-recipe/meta.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
{% set version = "2024.0.0" %}
2-
{% set intel_build_number = "49819" %} # [linux]
3-
{% set intel_build_number = "49840" %} # [win]
1+
{% set version = "2024.2.0" %}
2+
{% set forge_build_number = "981" %} # [linux]
3+
{% set forge_build_number = "978" %} # [win]
44
{% set target_platform = "linux-64" %} # [linux64]
55
{% set target_platform = "win-64" %} # [win64]
66

77
# use this if our build script changes and we need to increment beyond intel's version
88
{% set dst_build_number = '0' %}
9-
{% set build_number = intel_build_number|int + dst_build_number|int %}
9+
{% set build_number = forge_build_number|int + dst_build_number|int %}
1010

1111
package:
1212
name: vendored-dpcpp-llvm-spirv
@@ -33,8 +33,8 @@ outputs:
3333
- WHEELS_OUTPUT_FOLDER
3434
requirements:
3535
build:
36-
- dpcpp_linux-64 =={{ version }}=intel_{{ intel_build_number }} #[linux]
37-
- dpcpp_win-64 =={{ version }}=intel_{{ intel_build_number }} #[win]
36+
- dpcpp_linux-64 =={{ version }}=*_{{ forge_build_number }} #[linux]
37+
- dpcpp_win-64 =={{ version }}=*_{{ forge_build_number }} #[win]
3838
host:
3939
- python
4040
- setuptools

0 commit comments

Comments
 (0)