Skip to content

Commit 00a22de

Browse files
mitya57ojwb
authored andcommitted
Stop excluding classifiers for Armenian and Yiddish
Thanks to Henry Schreiner, PyPI now has them: pypa/trove-classifiers#215
1 parent abd9adc commit 00a22de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
for lang in langs:
4343
lang_titlecase = lang.title()
4444
# Only classifiers listed in https://pypi.org/classifiers/ are allowed
45-
if lang_titlecase not in ('Armenian', 'Yiddish'):
46-
classifiers.append('Natural Language :: ' + lang_titlecase)
45+
# Remove them here or submit them to https://github.com/pypa/trove-classifiers
46+
classifiers.append('Natural Language :: ' + lang_titlecase)
4747

4848
classifiers.extend([
4949
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)