We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44e07b2 commit 13f3824Copy full SHA for 13f3824
web/pandas_web.py
@@ -301,9 +301,9 @@ def roadmap_pdeps(context):
301
with open(pathlib.Path(context["target_path"]) / "pdeps.json", "w") as f:
302
json.dump(pdeps, f)
303
304
- for pdep in pdeps["items"]:
+ for pdep in sorted(pdeps["items"], key=operator.itemgetter("title")):
305
context["pdeps"]["Under discussion"].append(
306
- {"title": pdep["title"], "url": pdep["url"]}
+ {"title": pdep["title"], "url": pdep["html_url"]}
307
)
308
309
return context
0 commit comments