Skip to content

Commit 8b140b5

Browse files
authored
fix(core): release script README path (#423)
1 parent 119442b commit 8b140b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/scripts/do_release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ def main(self):
109109
return
110110

111111
# copy README.md from top level to python folder so that appears on pypi
112-
readme = ROOT / "README.md"
113-
python_readme = ROOT / "python" / "README.md"
112+
readme = ROOT.parent / "README.md"
113+
python_readme = ROOT / "README.md"
114114
python_readme.write_text(readme.read_text())
115115

116116
print("\nBuilding packages")

0 commit comments

Comments
 (0)