libensemble: add tasmanian as optional dependency (#25762)

This commit is contained in:
Stephen Hudson 2021-09-03 03:30:08 -05:00 committed by GitHub
parent f162dd4f5b
commit ffec74c359
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,6 +35,7 @@ class PyLibensemble(PythonPackage):
variant('nlopt', default=False, description='Install with nlopt')
variant('mpmath', default=False, description='Install with mpmath')
variant('deap', default=False, description='Install with DEAP')
variant('tasmanian', default=False, description='Install with tasmanian')
# depends_on('python@2.7:2.8,3.3:', when='@:0.4.1')
# depends_on('python@3.5:', when='@0.5.0:')
@ -52,4 +53,5 @@ class PyLibensemble(PythonPackage):
depends_on('nlopt', type=('build', 'run'), when='+nlopt')
depends_on('py-mpmath', type=('build', 'run'), when='+mpmath')
depends_on('py-deap', type=('build', 'run'), when='+deap')
depends_on('tasmanian+python', type=('build', 'run'), when='+tasmanian')
conflicts('~mpi', when='@:0.4.1')