create: Mention that python dependency does not have to be added (#15173)

A generic python dependency is already added implicitly by the
PythonPackage class.
This commit is contained in:
Michael Kuhn 2020-02-23 19:22:50 +01:00 committed by GitHub
parent fd60977613
commit b935d88282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -245,7 +245,9 @@ class PythonPackageTemplate(PackageTemplate):
base_class_name = 'PythonPackage'
dependencies = """\
# FIXME: Add dependencies if required.
# FIXME: Add dependencies if required. Only add the python dependency
# if you need specific versions. A generic python dependency is
# added implicity by the PythonPackage class.
# 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'))"""