Gerben Oostra

Results 6 comments of Gerben Oostra

#6969 duplicated this, thus closed it. The relevant comments from there: **What would you like Renovate to be able to do?** To also verify python package versions in conda environment...

I also expected to have pyproject.toml & requirements.txt to behave similar: if there's a pyproject.toml in the module directory, it would be used as preprocessing step to create the requirements.txt...

A possible workaround is to create an empty lambda: ```yml #serverless.yml functions: empty_python: handler: handler.handle description: "Empty project to trick python-requirements into preparing requirements." module: src/empty_python func1: handler: func1/index.main runtime:...

I've written a blogpost and demo repo where I demonstrate how poetry can (quite easily) be used in a mono repo with subpackages. Perhaps the utility scripts in it can...

For the latest version (v1.6.0-rc5), docformatter removes whitelines after block comments. For example, the following is how black formats the code: ``` class MyClass: def do_stuff(self): """Does stuff.""" def do_more(self):...

I see I have another tool interfering. I also use `autoflake` (mainly to remove unused imports). And that removes the `pass` lines But the root problem is Black not adhering...