Get Rid of nobuild, nolink, and alldeps (#2765)
* Removing the nobuild, nolink, and alldeps dependency types in favor of being explicit. * This will help with maintenance going forward, as adding more dependency types won't affect existing declared dependencies in weird ways. * default deptype is still `('build', 'link')`
This commit is contained in:

committed by
Todd Gamblin

parent
68baac0549
commit
402dfe30f9
@@ -38,12 +38,12 @@ class PyTraitlets(Package):
|
||||
version('4.2.0', '53553a10d124e264fd2e234d0571b7d0')
|
||||
version('4.1.0', 'd5bc75c7bd529afb40afce86c2facc3a')
|
||||
version('4.0.0', 'b5b95ea5941fd9619b4704dfd8201568')
|
||||
version('4.0' , '14544e25ccf8e920ed1cbf833852481f')
|
||||
version('4.0', '14544e25ccf8e920ed1cbf833852481f')
|
||||
|
||||
extends('python')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-decorator', type=nolink)
|
||||
depends_on('py-decorator', type=('build', 'run'))
|
||||
depends_on('py-ipython-genutils')
|
||||
depends_on('py-enum34', when='^python@:3.3')
|
||||
|
||||
|
Reference in New Issue
Block a user