From 60e57319b5e20e73a74e7641e3fc19135b6eea77 Mon Sep 17 00:00:00 2001 From: Lars Pieschel <26352100+lapie1@users.noreply.github.com> Date: Mon, 28 Jun 2021 10:57:09 +0200 Subject: [PATCH] Fixed ipython dependency --- jupyter-rdfify/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jupyter-rdfify/__init__.py b/jupyter-rdfify/__init__.py index 09e52e6..e8a4358 100644 --- a/jupyter-rdfify/__init__.py +++ b/jupyter-rdfify/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.0.0' +__version__ = '1.0.1' from IPython.display import display_javascript from .jupyter_rdf import JupyterRDF diff --git a/setup.py b/setup.py index d89f990..c3ac85b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="jupyter-rdfify", - version="1.0.0", + version="1.0.1", author="Lars Pieschel", author_email="lars.pieschel@rwth-aachen.de", description="IPython Extension for semantic web technology support (Turtle, SPARQL, ShEx, etc.)", @@ -16,7 +16,7 @@ setuptools.setup( install_requires=[ "rdflib", "rdflib-jsonld", - "ipython>=7.18.0", + "ipython>=7.0.0", "graphviz", "sparqlwrapper", "owlrl", -- GitLab