No numpy version specified: remove warning from conda recipe

Viewed 551

This conda recipe (full syntax here) ---

package:
  name: qcon
  version: 2020.02.05

source:
  - git_url: https://github.com/KxSystems/kdb.git
    git_depth: 1

build:
  script:
    - ARCH=l #[linux]
    - ARCH=m #[osx]
    - ARCH="$ARCH"64 #[x86_64]
    - mkdir -p $PREFIX/bin
    - cp $SRC_DIR/$ARCH/qcon $PREFIX/bin

test:
  commands:
    - echo \\\\ | qcon # [linux64]

produces warning:

No numpy version specified in conda_build_config.yaml.  Falling back to default numpy value of 1.11

Is it possible to get rid of the warning? The binary being packaged is standalone and does not depend on Python or numpy at all.

Full log context is available in this Github Gist

0 Answers
Related