From dc9e0e664ae69eab042384a70f30eff3dca82131 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 22 Oct 2024 21:47:47 +0200 Subject: [PATCH 1/2] need build number in build string otherwise new builds won't be uploaded --- recipe/meta.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index d2fe438..fd16716 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,4 +1,5 @@ {% set version = "3.0" %} +{% set build = 2 %} {% set netmod_variant = netmod if netmod else "default" %} package: @@ -10,8 +11,8 @@ source: sha256: ee076c4e672d18d6bf8dd2250e4a91fa96aac1db2c788e4572b5513d86936efb build: - number: 1 - string: "h{{ PKG_HASH }}_{{ netmod_variant }}" + number: {{ build }} + string: "{{ netmod_variant }}_h{{ PKG_HASH }}_{{ build }}" skip: true # [win or osx] run_exports: - {{ pin_subpackage('mvapich', max_pin='x.y') }} From 919a86ee3f85fcca37311eab067bb7f6afdb6291 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 22 Oct 2024 22:03:27 +0200 Subject: [PATCH 2/2] update build string selector in description --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index fd16716..91022e8 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -62,8 +62,8 @@ about: ### Selecting Netmods: OFI or UCX MVAPICH supports two high-level network modules (netmods), namely OFI and UCX: - - For the OFI netmod, use: `conda install conda-forge::mvapich=*=*_ofi` - - For the UCX netmod, use: `conda install conda-forge::mvapich=*=*_ucx` + - For the OFI netmod, use: `conda install conda-forge::mvapich=*=ofi_*` + - For the UCX netmod, use: `conda install conda-forge::mvapich=*=ucx_*` These commands will install the MVAPICH package configured with the desired netmod.