summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorsknigh <sknigh@sandia.gov>2020-03-03 11:38:55 -0800
committerGitHub <noreply@github.com>2020-03-03 13:38:55 -0600
commit370e7c211d9dcdf559f55dee24ae38bfcc74c009 (patch)
treecab6d18069f2d3ea2164300710defdaef2e4a4d5 /var
parentcec341594d5d5a59746cfec72f76ec271b81da2b (diff)
downloadspack-370e7c211d9dcdf559f55dee24ae38bfcc74c009.tar.gz
spack-370e7c211d9dcdf559f55dee24ae38bfcc74c009.tar.bz2
spack-370e7c211d9dcdf559f55dee24ae38bfcc74c009.tar.xz
spack-370e7c211d9dcdf559f55dee24ae38bfcc74c009.zip
intel-xed does not support python>3.7 (#15308)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/intel-xed/package.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/intel-xed/package.py b/var/spack/repos/builtin/packages/intel-xed/package.py
index ac9a7a4b0c..31b157531e 100644
--- a/var/spack/repos/builtin/packages/intel-xed/package.py
+++ b/var/spack/repos/builtin/packages/intel-xed/package.py
@@ -42,7 +42,8 @@ class IntelXed(Package):
variant('debug', default=False, description='Enable debug symbols')
- depends_on('python@2.7:', type='build')
+ # python module 'platform.linux_distribution' was removed in python 3.8
+ depends_on('python@2.7:3.7', type='build')
conflicts('target=ppc64:', msg='intel-xed only runs on x86')
conflicts('target=ppc64le:', msg='intel-xed only runs on x86')