Michael Leichtfried

Results 2 comments of Michael Leichtfried

One way to "bundle" black would be to bootstrap a python-environment with black using [gradle-python-envs from JetBrains](https://github.com/JetBrains/gradle-python-envs): `build.gradle`: ``` plugins{ id "com.jetbrains.python.envs" version "0.0.31" } envs { bootstrapDirectory = new...

Unfortunately, it seems like this approach won't work. I tried to set a dependency on the python-environment using `spotlessPythonApply.dependsOn('build_envs')` (in `build.gradle`), however as of now `ForeignExe.confirmVersionAndGetAbsolutePath()` (of spotless) seems to...