From e02a1fda702717cc6d92fc7780328fcbc57dc101 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Fri, 16 Dec 2022 14:25:11 -0500 Subject: Order authors case insensitively --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index f99e7ad..e450427 100644 --- a/setup.py +++ b/setup.py @@ -742,7 +742,7 @@ def check_authors(): author = author.replace('@', ' at ').replace('(', '<').replace(')', '>') if author not in authors: authors.append(author) - authors.sort() + authors.sort(key=lambda s: s.lower()) paras[AUTHORS_PARAGRAPH] = "\n".join(authors) f = open('AUTHORS', 'w') try: -- cgit v1.2.1