Update libensemble to v0.7.1 (#19349)

* Update libensemble to v0.7.1

* Update var/spack/repos/builtin/packages/py-libensemble/package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Stephen Hudson 2020-10-17 19:00:54 -05:00 committed by GitHub
parent 8619e5b5ab
commit c8581989d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,10 +11,11 @@ class PyLibensemble(PythonPackage):
"""Library for managing ensemble-like collections of computations.""" """Library for managing ensemble-like collections of computations."""
homepage = "https://libensemble.readthedocs.io" homepage = "https://libensemble.readthedocs.io"
url = "https://pypi.io/packages/source/l/libensemble/libensemble-0.7.0.tar.gz" url = "https://pypi.io/packages/source/l/libensemble/libensemble-0.7.1.tar.gz"
git = "https://github.com/Libensemble/libensemble.git" git = "https://github.com/Libensemble/libensemble.git"
version('develop', branch='develop') version('develop', branch='develop')
version('0.7.1', sha256='5cb294269624c1284ea25be9ed3bc668a2333e21e97a97b57ad339eb85435e46')
version('0.7.0', sha256='4c3c16ef3d4750b7a54198fae5d7ae402c5f5411ae85189da41afd20e20027dc') version('0.7.0', sha256='4c3c16ef3d4750b7a54198fae5d7ae402c5f5411ae85189da41afd20e20027dc')
version('0.6.0', sha256='3f6a926d3868da53835ed93fc2e2a047b368dacb648c7608ee3a66debcee4d38') version('0.6.0', sha256='3f6a926d3868da53835ed93fc2e2a047b368dacb648c7608ee3a66debcee4d38')
version('0.5.2', sha256='3e36c29a4a2adc0984ecfcc998cb5bb8a2cdfbe7a1ae92f7b35b06e41d21b889') version('0.5.2', sha256='3e36c29a4a2adc0984ecfcc998cb5bb8a2cdfbe7a1ae92f7b35b06e41d21b889')
@ -33,9 +34,10 @@ class PyLibensemble(PythonPackage):
# depends_on('python@2.7:2.8,3.3:', when='@:0.4.1') # depends_on('python@2.7:2.8,3.3:', when='@:0.4.1')
# depends_on('python@3.5:', when='@0.5.0:') # depends_on('python@3.5:', when='@0.5.0:')
depends_on('python@3.5:') depends_on('python@3.5:', type=('build', 'run'))
depends_on('py-setuptools', type='build') depends_on('py-setuptools', type='build')
depends_on('py-numpy', type=('build', 'run')) depends_on('py-numpy', type=('build', 'run'))
depends_on('py-psutil', type=('build', 'run'), when='@0.7.1:')
depends_on('mpi', when='@:0.4.1') depends_on('mpi', when='@:0.4.1')
depends_on('mpi', when='+mpi') depends_on('mpi', when='+mpi')
depends_on('py-mpi4py@2.0:', type=('build', 'run'), when='@:0.4.1') depends_on('py-mpi4py@2.0:', type=('build', 'run'), when='@:0.4.1')