Jamie Cockburn
Jamie Cockburn
**Workarounds** If you want the output in a file, just use the `-o` option: ```bash cobertura-clover-transform cobertura.xml -o clover.xml ``` If you need the output on stdout: ```bash temp_file=$(mktemp) &&...
The latest version that supports non-model based service providers is 0.6. This is incompatible with the latest PySAML2 (a dependency of djangosaml2) so you need PySAML4.x: ``` djangosaml2idp
I agree that the duplication between the modules is unfortunate. In theory you could factor out the "thing that gives you an interable" (specific to requests/httpx) from the "thing that...
I'm not really sure what to do about this one. `to_standard_types()` works, but for some reason I don't like it as a solution. I'm tempted to refactor everything to have...
I have a few suggestions: * the `IterableStream` could be moved to shared package (it doesn't matter if it's an iterable or an iterator you pass, because `iter()` will do...
@vtbassmatt this is now released under version 2.1.0 I thought you might be interested to see the changes I made to generally support iterables, and some related updates I made....
If you don't want to update gimptools, the last version that compiles with standard Ubuntu 18 packages is 1.8: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/releases/tag/v1.18
@rich2005 I was basing that on the following from the [Bimp 2.0 release notes](https://github.com/alessandrofrancesconi/gimp-plugin-bimp/releases/tag/v2.0): > BIMP codebase has been updated to be natively compatible with GIMP 2.10, while it does...
This one just tripped me up too. Any chance the attached PR will be merged soon? In my case, I'm generating and setting a django secret key, and it ended...