Skip to content

Commit 8ce477b

Browse files
committed
Do not use env variable in the jobs matrix
1 parent e19298d commit 8ce477b

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/check-mkl-interfaces.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ permissions: read-all
1010

1111
env:
1212
CHANNELS: '-c dppy/label/dev -c https://software.repos.intel.com/python/conda/ -c conda-forge --override-channels'
13-
# python 3.13 is blocked since BLAS requires "mkl<2025.0" (see https://github.com/conda-forge/blas-feedstock/pull/128
14-
# which depends on resolving MKL issue https://github.com/conda-forge/intel_repack-feedstock/issues/83)
15-
TEST_PYTHON_VERSION: '3.12'
1613
TEST_ENV_NAME: 'test_onemkl_interfaces'
1714
RERUN_TESTS_ON_FAILURE: 'true'
1815
RUN_TESTS_MAX_ATTEMPTS: 2
@@ -37,7 +34,7 @@ jobs:
3734
matrix:
3835
# python 3.13 is blocked since BLAS requires "mkl<2025.0" (see https://github.com/conda-forge/blas-feedstock/pull/128
3936
# which depends on resolving MKL issue https://github.com/conda-forge/intel_repack-feedstock/issues/83)
40-
python: [${{ env.TEST_PYTHON_VERSION }}]
37+
python: ['3.12']
4138
os: [ubuntu-22.04] # windows-2019 - no DFT support for Windows in oneMKL
4239

4340
permissions:
@@ -130,7 +127,9 @@ jobs:
130127

131128
strategy:
132129
matrix:
133-
python: [${{ env.TEST_PYTHON_VERSION }}]
130+
# python 3.13 is blocked since BLAS requires "mkl<2025.0" (see https://github.com/conda-forge/blas-feedstock/pull/128
131+
# which depends on resolving MKL issue https://github.com/conda-forge/intel_repack-feedstock/issues/83)
132+
python: ['3.12']
134133
os: [ubuntu-22.04] # windows-2019 - no DFT support for Windows in oneMKL
135134

136135
permissions:

0 commit comments

Comments
 (0)