diff options
author | Chien-Chang Feng <jasonfenglu@users.noreply.github.com> | 2017-11-23 15:25:35 +0900 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@googlemail.com> | 2017-11-23 07:25:35 +0100 |
commit | 630d7e19db65f2756f488c76a70e4098241411ac (patch) | |
tree | abe84ca98d2c340b760105c5feabac2c08675394 | |
parent | 8b63cc6ad6ca1a908064bd4bc73f53dd9d2fe91e (diff) | |
download | spack-630d7e19db65f2756f488c76a70e4098241411ac.tar.gz spack-630d7e19db65f2756f488c76a70e4098241411ac.tar.bz2 spack-630d7e19db65f2756f488c76a70e4098241411ac.tar.xz spack-630d7e19db65f2756f488c76a70e4098241411ac.zip |
py-yt: Yt-project is moved. Add new version. (#6409)
-rw-r--r-- | var/spack/repos/builtin/packages/py-yt/package.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-yt/package.py b/var/spack/repos/builtin/packages/py-yt/package.py index 6c8aa1797f..472acb8255 100644 --- a/var/spack/repos/builtin/packages/py-yt/package.py +++ b/var/spack/repos/builtin/packages/py-yt/package.py @@ -35,8 +35,10 @@ class PyYt(PythonPackage): interdisciplinary community. """ homepage = "http://yt-project.org" - url = "https://bitbucket.org/yt_analysis/yt" + url = "https://github.com/yt-project/yt.git" + version("3.4.0", "413b835f1b0e2a0bd26f1044ff7dbc94", + url="https://github.com/yt-project/yt/archive/yt-3.4.0.tar.gz") version("3.3.5", "2ad314ff3d3261e41825d15db027b0e7", url="https://bitbucket.org/yt_analysis/yt/get/yt-3.3.5.tar.gz") version("3.3.4", "3a84e56dfd82f9dd923f3fb8490e679c", @@ -51,8 +53,8 @@ class PyYt(PythonPackage): tag="yt-3.0.2", commit="511887af4c995a78fe606e58ce8162c88380ecdc") version("2.6.3", hg="https://bitbucket.org/yt_analysis/yt", tag="yt-2.6.3", commit="816186f16396a16853810ac9ebcde5057d8d5b1a") - version("development", hg="https://bitbucket.org/yt_analysis/yt", - branch="yt") + version("develop", git="https://github.com/yt-project/yt.git", + branch="master") variant("astropy", default=True, description="enable astropy support") variant("h5py", default=True, description="enable h5py support") |