Skip to content

Commit a492fea

Browse files
committed
mamba search does not accept --info option (#2236)
The PR proposes to resolve the issue observing in GitHub actions where `mamba search --info` results into `The following argument was not expected: --info` error. The error started to be reported since `mamba==2.0.5` release. As a workaround it is proposed to switch to `conda search --info` command which works properly. Note, #2231 is tuned here to consider available DPC++ version on Windows.
1 parent 813125a commit a492fea

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/conda-package.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
215215
- name: Test conda channel
216216
run: |
217-
mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
217+
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
218218
cat ${{ env.ver-json-path }}
219219
220220
- name: Collect dependencies
@@ -266,8 +266,7 @@ jobs:
266266
id: run_tests_linux
267267
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0
268268
with:
269-
shell: bash
270-
timeout_minutes: 10
269+
timeout_minutes: 12
271270
max_attempts: ${{ env.RUN_TESTS_MAX_ATTEMPTS }}
272271
retry_on: any
273272
command: |
@@ -351,7 +350,7 @@ jobs:
351350
- name: Test conda channel
352351
run: |
353352
@echo on
354-
mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
353+
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
355354
356355
- name: Dump version.json
357356
run: more ${{ env.ver-json-path }}

dpnp/backend/kernels/dpnp_krnl_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* sycl::ext::oneapi::experimental::properties was added.
3939
*/
4040
#ifndef __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT
41-
#define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241210L
41+
#define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241208L
4242
#endif
4343

4444
namespace mkl_blas = oneapi::mkl::blas;

0 commit comments

Comments
 (0)