From decf1ea945481e055fcc64de865ee309039aad7a Mon Sep 17 00:00:00 2001 From: Md Rezaul Karim <rezaul.karim@fit.fraunhofer.de> Date: Fri, 15 Oct 2021 08:22:50 +0200 Subject: [PATCH] Downgrading rdflib to ~=5.0" as RDFNamespace class is not available in rdflib~=6.0. --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 1a9af62..c832347 100644 --- a/setup.py +++ b/setup.py @@ -14,15 +14,13 @@ setuptools.setup( url="https://git.rwth-aachen.de/i5/teaching/jupyter-rdfify", packages=setuptools.find_packages(), install_requires=[ - "rdflib~=5.0"#_RDFNamespace class is not available in rdflib~=6.0. So, we need to downgrade it, + "rdflib~=5.0", "ipython>=7.0.0", "graphviz", "sparqlwrapper>=1.8.5", "sparqlslurper~=0.4", "PyShEx", - "owlrl"#, - #"sparqlslurper @ git+https://git.rwth-aachen.de/rezaul.karim/sparqlslurper.git@master", - #"PyShEx @ git+https://git.rwth-aachen.de/rezaul.karim/PyShEx.git@master" + "owlrl" ], classifiers=[ "Programming Language :: Python :: 3", -- GitLab