diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2021-10-26 12:47:20 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2021-10-26 22:15:42 +0200 |
commit | 2abeca9134f95fe656e117332f892203da4aa7fa (patch) | |
tree | 54216cd99124b744984ee181936e4670027a973b /python/conda/libastra/meta.yaml | |
parent | 52f9235933a2e97788b288bb3903215353132e97 (diff) | |
download | astra-2abeca9134f95fe656e117332f892203da4aa7fa.tar.gz astra-2abeca9134f95fe656e117332f892203da4aa7fa.tar.bz2 astra-2abeca9134f95fe656e117332f892203da4aa7fa.tar.xz astra-2abeca9134f95fe656e117332f892203da4aa7fa.zip |
Reorganize docker environments
Now using debian8, debian9, debian11 for cuda 8 - 11.4
Diffstat (limited to 'python/conda/libastra/meta.yaml')
-rw-r--r-- | python/conda/libastra/meta.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/conda/libastra/meta.yaml b/python/conda/libastra/meta.yaml index 4215fd1..0d0c7cf 100644 --- a/python/conda/libastra/meta.yaml +++ b/python/conda/libastra/meta.yaml @@ -22,7 +22,10 @@ requirements: - boost # [osx or linux] - cudatoolkit {{ cudatoolkit }} # [linux] # libstdcxx-ng 9.3 introduces extra host system requirements on glibc + # For the older systems (debian8, debian9) we use g++ 5.4 and 7.3, resp. + {% if cxx_compiler_version in ['5.4', '7.3'] -%} - libstdcxx-ng <9.3 # [linux] + {% endif %} run: # See: https://github.com/conda-forge/conda-forge.github.io/issues/687#issuecomment-460095230 - {{ pin_compatible('cudatoolkit', max_pin='x.x') }} # [linux] |