Todd Gamblin

Results 49 comments of Todd Gamblin

@mboisson: > The longer answer is that whenever you think you understand the shared library and run-time linkers, you inevitably find out that you don't. Is there something specific you...

Rebasing on develop to see if I can get CI to work.

@trws can you do one more thing (sorry this is currently manual) -- can you do a rebuild like we did for your `-Werror` PR? I feel like we need...

I think this is the same issue as https://github.com/python/mypy/issues/14373, but there I was able to resolve it with a module-specific override: ```toml [[tool.mypy.overrides]] module = 'pytest' follow_imports = 'skip' ```...

@hauntsaninja I wasn't able to skip numpy alone to make this work: ```console > grep -A 4 'with numpy' pyproject.toml # fix python version errors with numpy [[tool.mypy.overrides]] module =...

Ok that does work! The sense of those options is... kind of confusing. So `follow_imports = 'skip'` means "don't follow imports of this package, but if it has stubs go...

If you end up accepting something like this, and if it uses `FetchContent`, PLEASE ensure that package managers can disable that so that we do not have to patch your...

@scheibelp: RE: > This is trending toward listing out more information individually in the node dict: Yes. > what is the point of that? I don’t perceive a benefit other...

So not to jump in too late here, but what do people think of this syntax? ```python depends_on("geant4-data@{my.version}", when="@10:") ``` I am trying to think through the details, but in...