summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-11-24 19:11:28 +0700
committerhathach <[email protected]>2023-11-24 19:11:28 +0700
commit0e12d36531724f593c16bae9f4ff54a84cd1a01c (patch)
tree4c90a21b1828efdbbd1a6ba87a2ac604cbd26964 /tools
parent031be18e26933850d63c91659832b9987efecf24 (diff)
update doc, move sponsor to top of the page
Diffstat (limited to 'tools')
-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"""\
************