Skip to content

Commit 5f8938b

Browse files
committed
skip
1 parent 471c8da commit 5f8938b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ def _set_manifest_path(manifest_dir: str, aggregate: bool = False) -> Generator:
9292
for pkg in mapping.values():
9393
with open(os.path.join(_PATH_SRC, pkg, "MANIFEST.in")) as fh:
9494
lines.extend(fh.readlines())
95+
# TODO: this makes e2e examples tests hang
9596
# convert lightning_foo to lightning/foo
96-
for new, old in mapping.items():
97-
lines = [line.replace(old, f"lightning/{new}") for line in lines]
97+
# for new, old in mapping.items():
98+
# lines = [line.replace(old, f"lightning/{new}") for line in lines]
9899
with open(manifest_path, mode="w") as fp:
99100
fp.writelines(lines)
100101
else:

0 commit comments

Comments
 (0)