Stefán Freyr Stefánsson
Stefán Freyr Stefánsson
No worries. Hope you get well soon. I'll create a pull request for the ByteSize types and use the byteunits library for it, at least to begin with.
Just took a quick look at the documentation, the main problem with adding documentation at this point is that I'm not quite sure how this will eventually be used. The...
We're using it at www.wuxinextcode.com for our core technologies.
I've tried moving the plugin application over to only the subprojects that have the java plugin applied but that's not working either, although I get a different error then (`Task...
I agree... this should be supported via the DSL, for example: ``` docker { maintainer 'Me "[email protected]"' baseImage "some_base_image" registry = "docker.i.com" retistryUser="me" registryPassword="memyselfandI" } ```
Unfortunately, your workaround did not solve this issue for me. So in my CI loop I'm actually running the gradle command twice. Fortunately, gradle manages to short-circuit the whole compiling...
What actually fixed it for me was to add the following line to my `build.gradle`: `reportCoverage.dependsOn jacocoTestReport`
Managed to figure out that I needed to add `type=ChoiceEnum` to the prompt call to get the return value to be of the same type as the argument. Still doesn't...
Managed to find a workaround for this by not using an enum and instead use the `click.Choice` type: ``` click_choice = click.Choice(['opt1a', 'opt2a', 'opt3a']) click_prompt_option: click.Choice = typer.prompt("click prompt option",...