Cython: add setuptools run-dependency (#18572)

Cython requires a library that is available in Python 3.8, or before
Python 3.8 with setuptools. This specifies that setuptools is a run
dependency to allow running with Python < 3.8
This commit is contained in:
Adam J. Stewart 2020-09-08 19:27:49 -05:00 committed by GitHub
parent 88749de5c9
commit 2f4d493744
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ class PyCython(PythonPackage):
depends_on('python@2.6:2.8,3.3:', when='@0.23:', type=('build', 'run'))
depends_on('python@:2', when='@:0.22', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-setuptools', type=('build', 'run'))
depends_on('gdb@7.2:', type='test')
@property