Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

funowl

Package Overview
Dependencies
Maintainers
3
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

funowl - npm Package Compare versions

Comparing version
0.2.1
to
0.2.2
+1
-1
funowl.egg-info/pbr.json

@@ -1,1 +0,1 @@

{"git_version": "7f4aa7f", "is_release": false}
{"git_version": "03dd50f", "is_release": false}
Metadata-Version: 1.2
Name: funowl
Version: 0.2.1
Version: 0.2.2
Summary: Python rendering of the OWL Functional syntax

@@ -5,0 +5,0 @@ Home-page: http://biolink.github.io/hsolbrig

@@ -174,3 +174,3 @@ """

stmt = f'@prefix : <{DUMMY_PREFIX}> . @prefix xsd: <{XSD}> . :f a {v} .'
g = Graph()
g = Graph(bind_namespaces="core")
try:

@@ -177,0 +177,0 @@ g.parse(data=stmt, format="turtle")

@@ -54,3 +54,5 @@ from dataclasses import dataclass

self._prefixMap: Dict[str, Prefix] = dict()
super().__init__(g or Graph())
if g is None:
g = Graph(bind_namespaces="core")
super().__init__(g, bind_namespaces="core")
for prefix in PREFIX_PRESETS:

@@ -57,0 +59,0 @@ self.bind(prefix.prefixName, prefix.fullIRI)

Metadata-Version: 1.2
Name: funowl
Version: 0.2.1
Version: 0.2.2
Summary: Python rendering of the OWL Functional syntax

@@ -5,0 +5,0 @@ Home-page: http://biolink.github.io/hsolbrig

@@ -16,3 +16,3 @@ import logging

# community promises to fix it (some day...). For now, we won't run tests on this version
RDFLIB_PREFIXES_ARE_BROKEN = rdflib.__version__ >= "6.1.1"
RDFLIB_PREFIXES_ARE_BROKEN = rdflib.__version__ == "6.1.1"
PREFIXES_BROKEN_MESSAGE = "rdflib 6.1.1+ emits a LOT of prefixes. Test skipped!"

Sorry, the diff of this file is not supported yet