We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a097e5f commit 4e5f7d7Copy full SHA for 4e5f7d7
.github/workflows/python-package-conda.yml
@@ -10,6 +10,8 @@ on:
10
11
jobs:
12
build:
13
+ env:
14
+ MKL_THREADING_LAYER :'GNU'
15
strategy:
16
matrix:
17
os: [ubuntu-22.04]
@@ -29,6 +31,8 @@ jobs:
29
31
run: |
30
32
# $CONDA is an environment variable pointing to the root of the miniconda directory
33
echo $CONDA/bin >> $GITHUB_PATH
34
+ - name: Add MKL_THREADING_LAYER variable
35
+ run: echo "::set-env name=MKL_THREADING_LAYER::GNU"
36
- name: Install dependencies
37
38
conda env update --file environment.yml --name base --solver=classic
0 commit comments