Marco Heinemann

Results 77 comments of Marco Heinemann

@picnixz I refactored the PR as discussed. - There is a new global configuration parameter `enable_parallel_post_transform` which is `False` by default - The touched files went down - Docs were...

> @ubmarco I don't seem to be able to push to this branch, would you be able to check please? > > https://github.com/AA-Turner/sphinx/tree/mh-parallel-post-transform-parallel-write-doc-serial > > A I think the problem...

I integrated your `Refactoring` commit.

Oh my, these latest changes are not supposed to be pushed to this PR, it's for my local testing. Sorry, will revert them.

I reverted the unintended changes of my last commit and rebased the PR on latest master.

I'm a `pants` user and would like to package my apps for Python 3.11 or 3.12. Currently I have to use multiple resolves (lockfiles) to handle this. It impacts other...

I implemented the `extra_env_vars` inheritance feature. Conflicts are resolved as follows: - adhoc_tool -> extra_env_vars always wins over adhoc_tool -> runnable_dependencies -> extra_env_vars - adhoc_tool -> runnable_dependencies -> extra_env_vars are...

I addressed the comments. Unfortunately I feel a bit lost on the implementation of the overall feature. This simple example is still not covered: ``` system_binary( name="printenv", binary_name="printenv", extra_env_vars=["FOO=BAR"], )...

What works: - `extra_env_vars` for `system_binary` are used for fingerprinting and in case the system binary is used as `runnable_dependencies` (my use case) Pending issues: - `extra_env_vars` do not work...

I second this. I was trying to use ```python system_binary( name="drawio", binary_name="drawio", fingerprint_args=["--version"], ) ``` which leads to the __run.sh ```bash #!/usr/bin/env bash # This command line should execute the...