Iwan Aucamp
Iwan Aucamp
will add with xfail if I have time
See also: - https://github.com/RDFLib/rdflib/discussions/1541
Hi @wxwilcke, this does seem like a bug, I think it should only generate a warning, not an exception. An exception resulting from parsing negative dates seems like a violation...
@wxwilcke what you are seeing is a warning being logged, not an error. The literal is constructed, it just does not have literal value associated with it, so it will...
> @aucampia I agree that printing a warning and continuing on ill-typed values is compliant behaviour and normally not an issue. Here, however, it is unclear that this is merely...
Same problem in this code: ```python #!/usr/bin/env -S uv run --script --python 3.13 from enum import Enum class Animals(Enum): CAT = "cat" DOG = "dog" BIRD = "bird" @property def...
Thanks @ptmcg , I will have a look. @veyndan sorry I have been a bit busy, will try look again this week and process the inputs from @ptmcg
Can someone re-trigger the CI? It seems like the error was transient. We would really like to have this fix, it is causing problems for us in production.
@westurner please note that this repo is no longer maintained, JSON-LD support is now part of RDFLib core. We also plan on incorporating pyld for better JSON-LD support sometime.
I'm actually not entirely clear if this issue is fixed or not, the PR only changed the exception, the actual example from @anatoly-scherbakov still fails though and I'm not sure...