summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2023-07-31 20:50:00 +0200
committerGitHub <noreply@github.com>2023-07-31 13:50:00 -0500
commit20a76226024dccbf6cc47518ccb54da1436f5d87 (patch)
treec794531df676dcad2196c4da8dade427e567b2e6
parentd25f1059dd073f2777ac5043b43dab85b0e25a8e (diff)
downloadspack-20a76226024dccbf6cc47518ccb54da1436f5d87.tar.gz
spack-20a76226024dccbf6cc47518ccb54da1436f5d87.tar.bz2
spack-20a76226024dccbf6cc47518ccb54da1436f5d87.tar.xz
spack-20a76226024dccbf6cc47518ccb54da1436f5d87.zip
py-rdflib: add 6.3.2 (#39065)
* py-rdflib: add 6.3.2 * Update var/spack/repos/builtin/packages/py-rdflib/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Remove python dependency --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r--var/spack/repos/builtin/packages/py-rdflib/package.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-rdflib/package.py b/var/spack/repos/builtin/packages/py-rdflib/package.py
index 2673bc3ad3..e595319971 100644
--- a/var/spack/repos/builtin/packages/py-rdflib/package.py
+++ b/var/spack/repos/builtin/packages/py-rdflib/package.py
@@ -21,15 +21,22 @@ class PyRdflib(PythonPackage):
homepage = "https://github.com/RDFLib/rdflib"
pypi = "rdflib/rdflib-5.0.0.tar.gz"
+ version("6.3.2", sha256="72af591ff704f4caacea7ecc0c5a9056b8553e0489dd4f35a9bc52dbd41522e0")
version("6.2.0", sha256="62dc3c86d1712db0f55785baf8047f63731fa59b2682be03219cb89262065942")
version("6.0.2", sha256="6136ae056001474ee2aff5fc5b956e62a11c3a9c66bb0f3d9c0aaa5fbb56854e")
version("5.0.0", sha256="78149dd49d385efec3b3adfbd61c87afaf1281c30d3fcaf1b323b34f603fb155")
- depends_on("python@3.7:", when="@6:", type="build")
- depends_on("py-setuptools", type="build")
+ depends_on("python@3.7:3", when="@6.3:", type=("build", "run"))
+ depends_on("py-poetry-core@1.4:", when="@6.3:", type="build")
+ depends_on("py-isodate@0.6", when="@6.3:", type=("build", "run"))
depends_on("py-isodate", type=("build", "run"))
+ depends_on("py-pyparsing@2.1:3", when="@6.3:", type=("build", "run"))
depends_on("py-pyparsing", type=("build", "run"))
- depends_on("py-setuptools", when="@6:", type=("build", "run"))
+ depends_on("py-importlib-metadata@4", when="@6.3: ^python@:3.7", type=("build", "run"))
depends_on("py-importlib-metadata", when="@6.1: ^python@:3.7", type=("build", "run"))
+
+ # Historical dependencies
+ depends_on("py-setuptools", when="@6:6.2", type=("build", "run"))
+ depends_on("py-setuptools", when="@:5", type="build")
depends_on("py-six", when="@:5", type=("build", "run"))