https://github.com/adc-connect/adcc
Raw File
Tip revision: 6c32b760eb79251c11b0f05000e5e25a2b3dd99f authored by Michael F. Herbst on 28 November 2020, 12:16:31 UTC
Bump version: 0.15.2 → 0.15.3
Tip revision: 6c32b76
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/runner/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
    - 3.8
back to top