summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Baumbach <healther@users.noreply.github.com>2019-11-05 20:18:17 +0100
committerAdam J. Stewart <ajstewart426@gmail.com>2019-11-05 13:18:17 -0600
commit7a0bed78933d0577bae27c5328bc1d714dc79377 (patch)
tree6e410482c67155a99ec5b0ce5c4e9bf29123f281 /lib
parent68a34a11bc62b733cf583c31c83a097a1e745fe8 (diff)
downloadspack-7a0bed78933d0577bae27c5328bc1d714dc79377.tar.gz
spack-7a0bed78933d0577bae27c5328bc1d714dc79377.tar.bz2
spack-7a0bed78933d0577bae27c5328bc1d714dc79377.tar.xz
spack-7a0bed78933d0577bae27c5328bc1d714dc79377.zip
add depends_on(python) to PythonPackage stub (#13595)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/create.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/create.py b/lib/spack/spack/cmd/create.py
index e66be93bdc..c0d443ca6c 100644
--- a/lib/spack/spack/cmd/create.py
+++ b/lib/spack/spack/cmd/create.py
@@ -242,6 +242,7 @@ class PythonPackageTemplate(PackageTemplate):
dependencies = """\
# FIXME: Add dependencies if required.
+ # depends_on('python@2.X:2.Y,3.Z:', type=('build', 'run'))
# depends_on('py-setuptools', type='build')
# depends_on('py-foo', type=('build', 'run'))"""