diff options
author | Tristan Carel <tristan.carel@epfl.ch> | 2024-04-15 22:06:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 14:06:48 -0600 |
commit | 4ddb07e94fe85ca3841fc95f53a3eff5eb2d0152 (patch) | |
tree | 165ecf8e596c36b01e118f0c6fa3d1750dce551b /var | |
parent | 50585d55c5cd04645c301f667684baacb8d3da3b (diff) | |
download | spack-4ddb07e94fe85ca3841fc95f53a3eff5eb2d0152.tar.gz spack-4ddb07e94fe85ca3841fc95f53a3eff5eb2d0152.tar.bz2 spack-4ddb07e94fe85ca3841fc95f53a3eff5eb2d0152.tar.xz spack-4ddb07e94fe85ca3841fc95f53a3eff5eb2d0152.zip |
py-morphio: add version 3.3.7, update license (#43420)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-morphio/package.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-morphio/package.py b/var/spack/repos/builtin/packages/py-morphio/package.py index 80705367d7..908a1188ff 100644 --- a/var/spack/repos/builtin/packages/py-morphio/package.py +++ b/var/spack/repos/builtin/packages/py-morphio/package.py @@ -15,10 +15,14 @@ class PyMorphio(PythonPackage): git = "https://github.com/BlueBrain/MorphIO.git" pypi = "morphio/MorphIO-3.3.2.tar.gz" - license("LGPL-3.0-or-later") + license("LGPL-3.0-or-later", when="@:3.3.6") + license("Apache-2.0", when="@3.3.7:") + + maintainers("tristan0x") version("master", branch="master", submodules=True) + version("3.3.7", sha256="7cb6676fcbaa2ac154742ca8aed3fcb03bb4643852e36e368858580133b61732") version("3.3.6", sha256="0f2e55470d92a3d89f2141ae905ee104fd16257b93dafb90682d90171de2f4e6") depends_on("py-setuptools@24.2:", type="build") |