summaryrefslogtreecommitdiff
path: root/tools/gen_doc.py
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2023-11-24 23:38:37 +0700
committerGitHub <[email protected]>2023-11-24 23:38:37 +0700
commit1eb6ce784ca9b8acbbe43dba9f1d9c26c2e80eb0 (patch)
tree29b4fd0256e98169bd4130b42acc9c6ad91a95bf /tools/gen_doc.py
parent2fc9fbe27d6e51e9ef2845cc343495fee0567d28 (diff)
parente5588697d5c189cc4ba531ccb67f3af3398d93d1 (diff)
Merge pull request #2343 from hathach/release-0.16.00.16.0
Release 0.16.0
Diffstat (limited to 'tools/gen_doc.py')
-rw-r--r--tools/gen_doc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gen_doc.py b/tools/gen_doc.py
index 9078299cc..c63294588 100644
--- a/tools/gen_doc.py
+++ b/tools/gen_doc.py
@@ -13,9 +13,9 @@ TOP = Path(__file__).parent.parent.resolve()
def gen_deps_doc():
deps_rst = Path(TOP) / "docs/reference/dependencies.rst"
- df = pd.DataFrame.from_dict(deps_all, orient='index', columns=['Commit', 'Project'])
- df = df[['Project', 'Commit']].sort_index()
- df = df.rename_axis("Path")
+ df = pd.DataFrame.from_dict(deps_all, orient='index', columns=['Repo', 'Commit', 'Required by'])
+ df = df[['Repo', 'Commit', 'Required by']].sort_index()
+ df = df.rename_axis("Local Path")
outstr = f"""\
************