diff options
author | Mathew Cleveland <clevelam@lanl.gov> | 2020-06-03 21:16:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 22:16:46 -0500 |
commit | 02548c56fa77ed4ce62a0f8cf95b98966fcaebab (patch) | |
tree | b264447a649ee6de1b703d72ca67c95acdec042f /var | |
parent | 16e8e434c2cffa236f9f5d189423af4a81243d51 (diff) | |
download | spack-02548c56fa77ed4ce62a0f8cf95b98966fcaebab.tar.gz spack-02548c56fa77ed4ce62a0f8cf95b98966fcaebab.tar.bz2 spack-02548c56fa77ed4ce62a0f8cf95b98966fcaebab.tar.xz spack-02548c56fa77ed4ce62a0f8cf95b98966fcaebab.zip |
+ Add opppy-0_1_3 (#16926)
+ Update maintainers for OPPPY package
+ remove "run" requirement for setuptools and sphynx
Co-authored-by: Cleveland <cleveland@lanl.gov>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-opppy/package.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-opppy/package.py b/var/spack/repos/builtin/packages/py-opppy/package.py index 6e512b12c6..81bcf6d5af 100644 --- a/var/spack/repos/builtin/packages/py-opppy/package.py +++ b/var/spack/repos/builtin/packages/py-opppy/package.py @@ -14,15 +14,17 @@ class PyOpppy(PythonPackage): homepage = "https://github.com/lanl/opppy" url = "https://github.com/lanl/OPPPY/archive/opppy-0_1_2.tar.gz" git = "https://github.com/lanl/opppy.git" + maintainers = ['clevelam'] version('master', branch='master') + version('0_1_3', sha256='c3ca97f2ff8ab319b5c7257baa8cab852387dc00d426b4534c06f0894363c541') version('0_1_2', sha256='ef3795d3164fa0aa7ea7da7e223d6d0a48d2960aefd03a7d90cdb8b8f480cd4c') version('0_1_1', sha256='505c023853e75552abc65de9777a125ecb6a99a1cb4e605a4f702af837e3168b') - depends_on('py-setuptools', type=('build', 'run')) + depends_on('py-setuptools', type=('build')) + depends_on('py-sphinx', type=('build')) depends_on('py-numpy@1.6:', type=('build', 'run')) depends_on('python@3:', type=('build', 'run')) depends_on('py-argparse', type=('build', 'run'), when='^python@:2.6') depends_on('py-scipy', type=('build', 'run')) depends_on('py-matplotlib', type=('build', 'run')) - depends_on('py-sphinx', type=('build', 'run')) |