Skip to content

Commit

Permalink
tau: updating python version restriction (spack#35268)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam J. Stewart <[email protected]>
  • Loading branch information
2 people authored and spack spack committed Feb 15, 2023
1 parent 8fd747e commit 6870fd4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion var/spack/repos/builtin/packages/tau/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ class Tau(Package):
# TAU requires the ELF header support, libiberty and demangle.
depends_on("binutils+libiberty+headers+plugins", when="+binutils")
# Build errors with Python 3.9
depends_on("[email protected]:3.8", when="+python")
depends_on("[email protected]:3.8", when="@:2.31.0+python")
# python 3.11 doesn't work as of 2.32
depends_on("[email protected]:3.10", when="@2.31.1:+python")
depends_on("libunwind", when="+libunwind")
depends_on("mpi", when="+mpi", type=("build", "run", "link"))
depends_on("cuda", when="+cuda")
Expand Down

0 comments on commit 6870fd4

Please sign in to comment.