diff --git a/conda-recipe/conda_build_config.yaml b/conda-recipe/conda_build_config.yaml index 0f1e1f9078..73cdbcb073 100644 --- a/conda-recipe/conda_build_config.yaml +++ b/conda-recipe/conda_build_config.yaml @@ -1,2 +1,18 @@ numpy: - - 1.23 + - '1.23' +c_compiler: # [linux] + - gcc # [linux] +cxx_compiler: # [linux] + - gxx # [linux] +cxx_compiler_version: # [linux] + - '14' # [linux] +c_stdlib: # [linux] + - sysroot # [linux] +c_stdlib_version: # [linux] + - '2.28' # [linux] +c_stdlib: # [win] + - vs # [win] +cxx_compiler: # [win] + - vs2019 # [win] +c_compiler: # [win] + - vs2019 # [win] diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 482d54d6ef..d989bed195 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -22,8 +22,8 @@ requirements: # TODO: keep in sync with /pyproject.toml build: - {{ compiler('cxx') }} + - {{ stdlib('c') }} - {{ compiler('dpcpp') }} >={{ required_compiler_version }} - - sysroot_linux-64 >=2.28 # [linux] host: - python - pip >=24.0 @@ -57,6 +57,7 @@ test: requires: - {{ compiler('c') }} - {{ compiler('cxx') }} + - {{ stdlib('c') }} - cython - setuptools - pytest