Skip to content

Commit d323524

Browse files
committed
port changes to development recipe/
1 parent e8ca451 commit d323524

2 files changed

Lines changed: 15 additions & 9 deletions

File tree

recipe/conda_build_config.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
c_stdlib:
2+
- sysroot # [linux]
3+
- macosx_deployment_target # [osx]
4+
c_stdlib_version:
5+
- "2.17" # [linux]
6+
- "11.0" # [osx]
17
numpy:
28
- "1.26"
39
blas_impl:

recipe/meta.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
package:
1717
name: {{ name|lower }}
18-
version: {{ version }}
18+
version: "{{ version }}"
1919

2020
source:
2121
git_url: "{{ git_url }}"
@@ -25,42 +25,42 @@ source:
2525
build:
2626
number: 9
2727
skip: true # [win]
28+
ignore_run_exports:
29+
- fmt
2830

2931
requirements:
3032
build:
3133
- {{ compiler('c') }}
3234
- {{ compiler('cxx') }}
35+
- {{ stdlib("c") }}
3336
- cmake >=3.25
3437
- ninja
3538
- git
3639
host:
37-
- blas-devel =*=*{{ blas_impl }}
40+
- blas-devel * *{{ blas_impl }}
3841
- eigen >=3.4,<3.5
3942
- fmt 11.2.0
4043
- gmp
4144
- gsl
42-
- gtest 1.15.2
4345
- hdf5
4446
- highfive 3.1.0
4547
- libboost-devel
4648
- libboost-mpi
4749
- llvm-openmp # [linux or osx]
48-
- openmpi # [linux]
49-
- mpich # [osx]
50+
- mpich # [linux or osx]
5051
- range-v3 0.12.*
5152
run:
5253
- gmp
5354
- gsl
5455
- hdf5
55-
- libboost
5656
- libboost-mpi
5757
- llvm-openmp # [linux or osx]
58-
- blas-devel =*=*{{ blas_impl }}
58+
- blas-devel * *{{ blas_impl }}
59+
- libblas * *{{ blas_impl }}
5960
{% if blas_impl == "mkl" %}
6061
- mkl # [target_platform == "linux-64"]
6162
{% endif %}
62-
- openmpi # [linux]
63-
- mpich # [osx]
63+
- mpich # [linux or osx]
6464

6565
test:
6666
commands:

0 commit comments

Comments
 (0)