Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/IfcOpenShell/IfcOpenShell
/ gather_dependencies
Function
gather_dependencies
nix/build-all.py:354–359 ·
view source on GitHub ↗
(dep: str)
Source
from the content-addressed store, hash-verified
352
353
354
def
gather_dependencies(dep: str) ->
"Generator[str]"
:
355
yield
dep
356
for
d in dependency_tree[dep]:
357
if
f
"without-{d.lower()}"
not in flags:
358
for
x in gather_dependencies(d):
359
yield
x
360
361
362
if
"v"
in flags:
Callers
1
build-all.py
File · 0.85
Calls
1
lower
Method · 0.80
Tested by
no test coverage detected