summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Volkl <valentin.volkl@cern.ch>2022-09-14 18:57:20 +0200
committerGitHub <noreply@github.com>2022-09-14 11:57:20 -0500
commit01c9780577ca47e9e6a20937915506248f87f095 (patch)
treee8b43c26a637eaf8126991ff58cbdd9dbdd33bf2
parent5ffde1d51c86a50aa1429d55ed6ee93d4080163d (diff)
downloadspack-01c9780577ca47e9e6a20937915506248f87f095.tar.gz
spack-01c9780577ca47e9e6a20937915506248f87f095.tar.bz2
spack-01c9780577ca47e9e6a20937915506248f87f095.tar.xz
spack-01c9780577ca47e9e6a20937915506248f87f095.zip
py-awkward: allow newer, fixed rapidjson versions (#32650)
Rapidjson was constrained due to a bug (see https://github.com/spack/spack/pull/29889) , but newer (although untagged) versions of rapidjson have since been added to spack (https://github.com/spack/spack/pull/29869). Tested the build of py-awkward with the latest, works fine.
-rw-r--r--var/spack/repos/builtin/packages/py-awkward/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-awkward/package.py b/var/spack/repos/builtin/packages/py-awkward/package.py
index dd8269a24c..2c258ec109 100644
--- a/var/spack/repos/builtin/packages/py-awkward/package.py
+++ b/var/spack/repos/builtin/packages/py-awkward/package.py
@@ -37,6 +37,6 @@ class PyAwkward(PythonPackage):
depends_on("py-numpy@1.13.1:", type=("build", "run"))
depends_on("py-pybind11", type=("build", "link"))
depends_on("dlpack", when="@1.0.0:")
- depends_on("rapidjson@:1.1.0")
+ depends_on("rapidjson")
depends_on("cmake@3.13:", type="build")
depends_on("py-wheel@0.36.0:", type="build", when="@:1.7.0")