Iwan Aucamp

Results 286 comments of Iwan Aucamp

Next release will be 7 and we will generally be more open to breaking changes going forward.

@kouralex best to open an issue, but if something is wrong with RDFLib we are happy to have it fixed, but RDFLib is entirely community-driven.

@kouralex if a triple is in asserted in the input source it should be in the output, so if it is ignored it is a bug. I actually don't think...

@miguelsmuller sadly, there are no active maintainers for sparqlwrapper. I think the most reasonable approach going forward is to incorporate the features it offers into https://github.com/RDFLib/rdflib - ideally it should...

The alternative is to use `dest` from `add_subparsers`, but if I use this and also add a type hint for the dest then Tap thinks it should add an argument...

I also tried with `_subparser_flag` as follow: ``` class MainParser(Tap): _subparser_flag: str ... def configure(self): ... self.add_subparsers(required=True, dest="_subparser_flag") ... ``` But get the same error. It seems there is some...

As a workaround I have done this: ```python class MainParser(Tap): subparser_flag: str def configure(self): self.add_argument( # Hack to work around problems with Tap, without this Tap complains # that `subparser_flag`...

I want to, but realistically I probably won't get to it before the end of next week, though I may look at it then. Will notify before I start working...

> Usually python Applications maintain a tightly controlled (or Pinned) list of required library versions to ensure best operation, and they ship with a package lockfile to inform the package...

> There is, of course, the problem of validating that the version ranges in wheel you distribute are correct. For RDFLib I validate this by testing RDFLib with the minimum...