You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I first import brickschema I get the warnings below. I installed pip install brickschema[reasonable] in a new 3.8.6 venv.
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/__init__.py:177: UserWarning: Code: dateTimeStamp is not defined in namespace XSD
from . import DatatypeHandling, Closure
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: dateTimeStamp is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: length is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: maxExclusive is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: maxInclusive is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: maxLength is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: minExclusive is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: minInclusive is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: minLength is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/RDFSClosure.py:40: UserWarning: Code: pattern is not defined in namespace XSD
from owlrl.AxiomaticTriples import RDFS_Axiomatic_Triples, RDFS_D_Axiomatic_Triples
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/OWLRL.py:53: UserWarning: Code: dateTimeStamp is not defined in namespace XSD
from .XsdDatatypes import OWL_RL_Datatypes, OWL_Datatype_Subsumptions
/home/david/.pyenv/versions/3.8.6/envs/brick/lib/python3.8/site-packages/owlrl/OWLRLExtras.py:64: UserWarning: Code: dateTimeStamp is not defined in namespace XSD
from .RestrictedDatatype import extract_faceted_datatypes
The text was updated successfully, but these errors were encountered:
Hi @david-waterworth ; this seems to be occurring as of the recent updates to RDFlib and OWL-RL. I haven't noticed any correctness issues so far, but let me know if you notice anything. I'll keep an eye out to see if a solution arises
When I first import
brickschema
I get the warnings below. I installedpip install brickschema[reasonable]
in a new 3.8.6 venv.The text was updated successfully, but these errors were encountered: