diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-10-20 19:08:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 19:08:04 -0500 |
commit | 01e64886acaa87319d2613ea179510bda55c1e34 (patch) | |
tree | 783a40098137487b416d113e7d1fe91877fb6983 | |
parent | 7f2aacfffcd6c8fa3daa2d2ea47e14c7ff472b86 (diff) | |
download | spack-01e64886acaa87319d2613ea179510bda55c1e34.tar.gz spack-01e64886acaa87319d2613ea179510bda55c1e34.tar.bz2 spack-01e64886acaa87319d2613ea179510bda55c1e34.tar.xz spack-01e64886acaa87319d2613ea179510bda55c1e34.zip |
Tut cannot be built with Python 3.7+ (#13341)
-rw-r--r-- | var/spack/repos/builtin/packages/tut/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/tut/package.py b/var/spack/repos/builtin/packages/tut/package.py index 286e813c6d..41c86909c9 100644 --- a/var/spack/repos/builtin/packages/tut/package.py +++ b/var/spack/repos/builtin/packages/tut/package.py @@ -16,6 +16,10 @@ class Tut(WafPackage): patch('python3-octal.patch', when='@2016-12-19') + # Python 3.7 support is currently broken + # https://github.com/mrzechonek/tut-framework/issues/18 + depends_on('python@:3.6', type='build') + def build_args(self): args = [] |