Fridolín Pokorný

Results 197 comments of Fridolín Pokorný

We could catch the `FileNotFoundError` and produce a warning in these cases (and set CPU information to None). I'm not familiar with obtaining CPU info on macos (I don't have...

It looks like the config command works as expected - it reports that there was an error loading `/proc/cpuinfo` and keeps CPU information set to `None`. It looks like the...

The CI failure is not related to this PR.

Following our discussion [here](https://discuss.python.org/t/pep-710-recording-the-provenance-of-installed-packages/25428/49), @sbidoul PTAL

The main issue with the current approach is that a task/node can have multiple parent tasks. Then we will need to create a mechanism to specify which task result should...

> I think there are two possibilities: either limiting this functionnality to nodes with a single parent task (enforced by internal check) or as you said specify the parent task...

@aloubieres fyi, if you use CLI executor

Seems like a duplicate of https://github.com/selinon/selinon/issues/165 What Python version are you running? I assume >=3.8.

Perfect! Thanks for the fix. Closing.

What I tend to do is to define one base task for the whole project codebase, something like: ```python class Base(SelinonTask): def run(self, node_args) -> Any: # ... perform pre-processing...