Skip to content

Commit 7e591e2

Browse files
antonwolfyvtavana
authored andcommitted
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 7258b06 commit 7e591e2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/conda-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
149149
- name: Test conda channel
150150
run: |
151-
mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
151+
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
152152
cat ${{ env.ver-json-path }}
153153
154154
- name: Get package version
@@ -182,7 +182,7 @@ jobs:
182182
id: run_tests_linux
183183
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0
184184
with:
185-
timeout_minutes: 10
185+
timeout_minutes: 12
186186
max_attempts: ${{ env.RUN_TESTS_MAX_ATTEMPTS }}
187187
retry_on: any
188188
command: |
@@ -348,7 +348,7 @@ jobs:
348348
- name: Test conda channel
349349
run: |
350350
@echo on
351-
mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
351+
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
352352
353353
- name: Dump version.json
354354
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
@@ -40,7 +40,7 @@
4040
* sycl::ext::oneapi::experimental::properties was added.
4141
*/
4242
#ifndef __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT
43-
#define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241210L
43+
#define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241208L
4444
#endif
4545

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

dpnp/backend/kernels/elementwise_functions/i0.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* sycl::ext::intel::math::cyl_bessel_i0(x) is fully resolved.
3333
*/
3434
#ifndef __SYCL_COMPILER_BESSEL_I0_SUPPORT
35-
#define __SYCL_COMPILER_BESSEL_I0_SUPPORT 20241210L
35+
#define __SYCL_COMPILER_BESSEL_I0_SUPPORT 20241208L
3636
#endif
3737

3838
#if __SYCL_COMPILER_VERSION >= __SYCL_COMPILER_BESSEL_I0_SUPPORT

0 commit comments

Comments
 (0)