changeset 1698:58f1877780b9

jsonld moved into rdflib 6.0.1
author drewp@bigasterisk.com
date Tue, 12 Oct 2021 20:18:54 -0700
parents 88f6e9bf69d1
children 411f5e013201
files lib/patchablegraph/patchablegraph.py lib/patchablegraph/setup.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/patchablegraph/patchablegraph.py	Tue Sep 28 00:32:16 2021 -0700
+++ b/lib/patchablegraph/patchablegraph.py	Tue Oct 12 20:18:54 2021 -0700
@@ -27,7 +27,7 @@
 from rdflib import ConjunctiveGraph
 from rdflib.namespace import NamespaceManager
 from rdflib.parser import StringInputSource
-from rdflib_jsonld.serializer import from_rdf
+from rdflib.plugins.serializers.jsonld import from_rdf
 import cyclone.sse
 from cycloneerr import PrettyErrorHandler
 from rdfdb.patch import Patch
--- a/lib/patchablegraph/setup.py	Tue Sep 28 00:32:16 2021 -0700
+++ b/lib/patchablegraph/setup.py	Tue Oct 12 20:18:54 2021 -0700
@@ -8,7 +8,7 @@
     install_requires=[
         'cyclone',
         'twisted',
-        'rdflib-jsonld >= 0.3',
+        'rdflib >= 6.0.1',
         'rdfdb >= 0.8.0',
         'scales @ git+http://github.com/drewp/scales.git@448d59fb491b7631877528e7695a93553bfaaa93',
         'cycloneerr',