Closed
Description
xref #51656 (comment)
The list of PDEPs is growing, and we're likely to have a PDEP-10 soon. So far, we list PDEPs at https://pandas.pydata.org/about/roadmap.html, and we started sorting the PDEP list by title in #51656. As the numbers grow to 10, sorting naively by title will make that PDEP-2 > PDEP-10
. To keep the list sorted, we have two main options, use a regex to extract the number, convert it to int, and sort by it, or use PDEP-001
... in PDEP PR titles so the current sorting comes naturally. Personally I don't have a preference, I guess we can make the sort a bit more complex and make our life easier. But since there is some work on PDEPs, some discussion on moving to another repo... I prefer to ask, in case there are other ideas.