summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Young <A-N-Other@users.noreply.github.com>2023-06-11 20:17:52 +0100
committerGitHub <noreply@github.com>2023-06-11 15:17:52 -0400
commitd00010819f3a421fa0eb58711da2a23ae1f1856a (patch)
tree7c88ab5069ee08d7cd97b1b900d065e5d498ba0b
parent248b05b32ade8f9b67c6e889f14853516e72f17b (diff)
downloadspack-d00010819f3a421fa0eb58711da2a23ae1f1856a.tar.gz
spack-d00010819f3a421fa0eb58711da2a23ae1f1856a.tar.bz2
spack-d00010819f3a421fa0eb58711da2a23ae1f1856a.tar.xz
spack-d00010819f3a421fa0eb58711da2a23ae1f1856a.zip
py-deeptools: add 3.5.2, update dependency versions (#38287)
* py-deeptools: add 3.5.2, update dependency versions * Update var/spack/repos/builtin/packages/py-deeptools/package.py Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> * Update var/spack/repos/builtin/packages/py-deeptools/package.py Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> * Rearranging dependencies to match setup.py --------- Co-authored-by: LMS Bioinformatics <bioinformatics@lms.mrc.ac.uk> Co-authored-by: Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>
-rw-r--r--var/spack/repos/builtin/packages/py-deeptools/package.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/py-deeptools/package.py b/var/spack/repos/builtin/packages/py-deeptools/package.py
index 27203a46cb..a886d6d95d 100644
--- a/var/spack/repos/builtin/packages/py-deeptools/package.py
+++ b/var/spack/repos/builtin/packages/py-deeptools/package.py
@@ -14,20 +14,22 @@ class PyDeeptools(PythonPackage):
homepage = "https://pypi.python.org/pypi/deepTools/"
url = "https://github.com/deeptools/deepTools/archive/3.3.0.tar.gz"
+ version("3.5.2", sha256="4d8be1bafa1e8f54a26f5eaac54da6c6e50709f3a3a72a57cd96ac0f22c30383")
version("3.3.0", sha256="a7aaf79fe939ca307fe6ec5e156750389fdfa4324bf0dd6bf5f53d5fda109358")
version("3.2.1", sha256="dbee7676951a9fdb1b88956fe4a3294c99950ef193ea1e9edfba1ca500bd6a75")
version("2.5.2", sha256="16d0cfed29af37eb3c4cedd9da89b4952591dc1a7cd8ec71fcba87c89c62bf79")
- depends_on("python@2.7:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-numpy@1.9.0:", type=("build", "run"))
depends_on("py-scipy@0.17.0:", type=("build", "run"))
- depends_on("py-py2bit@0.2.0:", type=("build", "run"))
- depends_on("py-pybigwig@0.2.1:", type=("build", "run"))
+ depends_on("py-matplotlib@3.3.0:", when="@3.5.1:", type=("build", "run"))
+ depends_on("py-matplotlib@2.1.2:", when="@:3.3.0", type=("build", "run"))
depends_on("py-pysam@0.14.0:", type=("build", "run"))
- depends_on("py-matplotlib@2.1.2:", type=("build", "run"))
depends_on("py-numpydoc@0.5:", type=("build", "run"))
- depends_on("py-plotly@2.0.0:", type=("build", "run"))
+ depends_on("py-pybigwig@0.2.1:", type=("build", "run"))
+ depends_on("py-py2bit@0.2.0:", type=("build", "run"))
+ depends_on("py-plotly@4.9:", when="@3.5.1:", type=("build", "run"))
+ depends_on("py-plotly@2.0.0:", when="@:3.5.0", type=("build", "run"))
depends_on("py-deeptoolsintervals@0.1.8:", type=("build", "run"))
def patch(self):