From a8267828e238b4213f7893c34540ce93ade2a4e9 Mon Sep 17 00:00:00 2001 From: Dmitry Shachnev Date: Sun, 24 May 2026 21:26:39 +0300 Subject: [PATCH] python: Skip Natural Language :: Sesotho classifier --- python/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index f669f4e3..52cb3457 100644 --- a/python/setup.py +++ b/python/setup.py @@ -42,7 +42,8 @@ lang_titlecase = lang.title() # Only classifiers listed in https://pypi.org/classifiers/ are allowed # Remove them here or submit them to https://github.com/pypa/trove-classifiers - classifiers.append('Natural Language :: ' + lang_titlecase) + if lang_titlecase != 'Sesotho': + classifiers.append('Natural Language :: ' + lang_titlecase) classifiers.extend([ 'Operating System :: OS Independent',