Skip to content

Commit

Permalink
Use same build string glob as python's run_exports
Browse files Browse the repository at this point in the history
This is to avoid
  ValueError: Incompatible component merge:
    - '*_cpython'
    - '*cpython'
caused by conda/conda#11442 .

Signed-off-by: Marcel Bargull <[email protected]>
  • Loading branch information
mbargull authored and sdebionne committed Mar 11, 2024
1 parent bccae07 commit da2042c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ requirements:
build:
- {{ compiler('cxx') }}
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- python {{ PY_DUMMY_VER }} *cpython # [build_platform != target_platform]
- numpy {{ NP_DUMMY_VER }} # [build_platform != target_platform]
- python {{ PY_DUMMY_VER }}.* *_cpython # [build_platform != target_platform]
- numpy {{ NP_DUMMY_VER }}.* # [build_platform != target_platform]
host:
- icu # [unix]
- xz # [unix]
- bzip2
- zlib
- zstd
# see conda_build_config
- python {{ PY_DUMMY_VER }} *cpython
- python {{ PY_DUMMY_VER }} *_cpython
- numpy {{ NP_DUMMY_VER }}

outputs:
Expand Down

0 comments on commit da2042c

Please sign in to comment.