Skip to content
Snippets Groups Projects
Unverified Commit 370e7c21 authored by sknigh's avatar sknigh Committed by GitHub
Browse files

intel-xed does not support python>3.7 (#15308)

parent cec34159
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,8 @@ class IntelXed(Package): ...@@ -42,7 +42,8 @@ class IntelXed(Package):
variant('debug', default=False, description='Enable debug symbols') 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=ppc64:', msg='intel-xed only runs on x86')
conflicts('target=ppc64le:', msg='intel-xed only runs on x86') conflicts('target=ppc64le:', msg='intel-xed only runs on x86')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment