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:
parent
88749de5c9
commit
2f4d493744
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue