https://github.com/adc-connect/adcc
Raw File
Tip revision: 25e247a23cfcc06667dd404e79827a56be75c307 authored by Michael F. Herbst on 13 March 2020, 18:18:57 UTC
Bump version: 0.14.1 → 0.14.2
Tip revision: 25e247a
conda_build_config.yaml
# <<<  Compiler Stuff  >>>
c_compiler:
    - clang                            # [osx]
    - gcc                              # [linux]
cxx_compiler:
    - clangxx                          # [osx]
    - gxx                              # [linux]
target_platform:
    - osx-64                           # [osx]
    - linux-64                         # [linux]
CONDA_BUILD_SYSROOT:
    - /Users/travis/MacOSX10.9.sdk     # [osx]
c_compiler_version:
    - 7.3.0                            # [linux]
    - 4                                # [osx]
cxx_compiler_version:
    - 7.3.0                            # [linux]
    - 4                                # [osx]

# <<< Other Stuff >>>
blas_impl:
    - mkl
mkl:
    - 2019.*
python:
    - 3.6
    - 3.7
back to top