Skip to content

Commit 158858e

Browse files
authored
Merge pull request #2179 from traversaro/patch-4
Remove blas-devel from packages required to compile against blas
2 parents 8335651 + 34ceea0 commit 158858e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/maintainer/knowledge_base.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1188,7 +1188,6 @@ host of the recipe,
11881188
requirements:
11891189
host:
11901190
- libblas
1191-
- blas-devel
11921191
- libcblas
11931192
- liblapack
11941193
- liblapacke
@@ -1215,7 +1214,9 @@ If a package needs a specific implementation's internal API for more control you
12151214
```yaml
12161215
requirements:
12171216
host:
1218-
- {{ blas_impl }}
1217+
# Keep mkl-devel here for pinning
1218+
- mkl-devel {{ blas_impl == "mkl" }}
1219+
- {{ blas_impl }} {{ blas_impl != "mkl" }}
12191220
run:
12201221
- libblas * *{{ blas_impl }}
12211222
- {{ blas_impl }}

0 commit comments

Comments
 (0)