summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoïc Pottier <48072795+lpottier@users.noreply.github.com>2023-03-03 02:28:40 -0800
committerGitHub <noreply@github.com>2023-03-03 05:28:40 -0500
commit479f5a74a3e8a9925c20c1e7f27872f02941f27a (patch)
tree31ceef30ee9b2016c666192475aeebd4177e3297
parent895886959fbbb6e03eaacbb73271e60183ebed2e (diff)
downloadspack-479f5a74a3e8a9925c20c1e7f27872f02941f27a.tar.gz
spack-479f5a74a3e8a9925c20c1e7f27872f02941f27a.tar.bz2
spack-479f5a74a3e8a9925c20c1e7f27872f02941f27a.tar.xz
spack-479f5a74a3e8a9925c20c1e7f27872f02941f27a.zip
py-ipdb: updating versions (#35654)
* py-ipdb: updating versions Signed-off-by: Loïc Pottier <pottier1@llnl.gov> * py-ipdb: fixing versions problem and deleting 10.1 which is too old for Python > 3.6 Signed-off-by: Loïc Pottier <pottier1@llnl.gov> * Update var/spack/repos/builtin/packages/py-ipdb/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-ipdb: removed useless dependencies Signed-off-by: Loïc Pottier <pottier1@llnl.gov> * Update var/spack/repos/builtin/packages/py-ipdb/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-ipdb/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-ipdb: missing @ Signed-off-by: Loïc Pottier <pottier1@llnl.gov> * Update var/spack/repos/builtin/packages/py-ipdb/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> --------- Signed-off-by: Loïc Pottier <pottier1@llnl.gov> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r--var/spack/repos/builtin/packages/py-ipdb/package.py28
1 files changed, 12 insertions, 16 deletions
diff --git a/var/spack/repos/builtin/packages/py-ipdb/package.py b/var/spack/repos/builtin/packages/py-ipdb/package.py
index d79224f57f..08cbabe843 100644
--- a/var/spack/repos/builtin/packages/py-ipdb/package.py
+++ b/var/spack/repos/builtin/packages/py-ipdb/package.py
@@ -10,24 +10,20 @@ class PyIpdb(PythonPackage):
"""ipdb is the iPython debugger and has many additional features, including
a better interactive debugging experience via colorized output."""
- pypi = "ipdb/ipdb-0.10.1.tar.gz"
+ pypi = "ipdb/ipdb-0.13.11.tar.gz"
- version("0.10.1", sha256="bb2948e726dbfb2687f4a582088b3f170b2556ba8e54ae1231c783c97e99ec87")
-
- # :TODO:
- # There might be potential to add variants here, but at the time of writing
- # this the original packager does not know what they are. See the 3rd party
- # section on ipdb's GitHub:
- # https://github.com/gotcha/ipdb#third-party-support
- depends_on("python@2.6:2.8,3.2:")
+ version("0.13.11", sha256="c23b6736f01fd4586cc2ecbebdf79a5eb454796853e1cd8f2ed3b7b91d4a3e93")
+ version("0.13.10", sha256="6950715f491d59df6c27b49cb372f22c2f1763478a5e9ed03fb0507e2d85f460")
+ version("0.13.9", sha256="951bd9a64731c444fd907a5ce268543020086a697f6be08f7cc2c9a752a278c5")
+ version("0.13.8", sha256="8d368fa048a93ad6c1985d7f1d78d68580c879e4053fc15714bdcf2a1b042d06")
+ version("0.13.7", sha256="178c367a61c1039e44e17c56fcc4a6e7dc11b33561261382d419b6ddb4401810")
# Dependencies gathered from:
# https://github.com/gotcha/ipdb/blob/master/setup.py
- # However additional dependencies added below were found via testing.
depends_on("py-setuptools", type="build")
- # ipdb needs iPython and others available at runtime
- depends_on("py-ipython@0.10.2:", type=("build", "link"))
- depends_on("py-traitlets", type=("build", "link"))
- depends_on("py-six", type=("build", "link"))
- depends_on("py-pexpect", type=("build", "link"))
- depends_on("py-prompt-toolkit", type=("build", "link"))
+ depends_on("py-ipython@7.17:", type=("build", "run"))
+ depends_on("py-toml@0.10.2:", when="@:0.13.9", type=("build", "run"))
+
+ depends_on("py-ipython@7.31.1:", when="@0.13.10:", type=("build", "run"))
+ depends_on("py-tomli", when="@0.13.10: ^python@:3.10", type=("build", "run"))
+ depends_on("py-decorator", type=("build", "run"))