summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorErik Heeren <erik.heeren@epfl.ch>2023-11-18 14:54:50 +0100
committerGitHub <noreply@github.com>2023-11-18 07:54:50 -0600
commit7137c43407d65bc20e86ae362b0149f776abf229 (patch)
tree33c1e411ae0a90d2c20260f091f8d9fbc7c1beac /var
parentf474c8781483b8b6fbe0dc1f16f0e9b1d086cb28 (diff)
downloadspack-7137c43407d65bc20e86ae362b0149f776abf229.tar.gz
spack-7137c43407d65bc20e86ae362b0149f776abf229.tar.bz2
spack-7137c43407d65bc20e86ae362b0149f776abf229.tar.xz
spack-7137c43407d65bc20e86ae362b0149f776abf229.zip
py-jsonpath-ng: version bump (#41078)
* py-jsonpath-ng: version bump * py-jsonpath-ng: fix typo in version number
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-jsonpath-ng/package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-jsonpath-ng/package.py b/var/spack/repos/builtin/packages/py-jsonpath-ng/package.py
index 0d2274f997..261e43dbd6 100644
--- a/var/spack/repos/builtin/packages/py-jsonpath-ng/package.py
+++ b/var/spack/repos/builtin/packages/py-jsonpath-ng/package.py
@@ -15,9 +15,11 @@ class PyJsonpathNg(PythonPackage):
homepage = "https://github.com/h2non/jsonpath-ng"
pypi = "jsonpath-ng/jsonpath-ng-1.5.2.tar.gz"
+ version("1.6.0", sha256="5483f8e9d74c39c9abfab554c070ae783c1c8cbadf5df60d561bc705ac68a07e")
+ version("1.5.3", sha256="a273b182a82c1256daab86a313b937059261b5c5f8c4fa3fc38b882b344dd567")
version("1.5.2", sha256="144d91379be14d9019f51973bd647719c877bfc07dc6f3f5068895765950c69d")
depends_on("py-setuptools", type="build")
depends_on("py-ply", type=("build", "run"))
- depends_on("py-decorator", type=("build", "run"))
- depends_on("py-six", type=("build", "run"))
+ depends_on("py-decorator", type=("build", "run"), when="@:1.5")
+ depends_on("py-six", type=("build", "run"), when="@:1.5")