We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c87a764 commit c115710Copy full SHA for c115710
src/poetry/core/packages/package.py
@@ -348,7 +348,7 @@ def all_classifiers(self) -> list[str]:
348
# it like this so that 3.10 is sorted after 3.9.
349
sorted_classifiers = []
350
python_classifiers_inserted = False
351
- for classifier in sorted(set(classifiers)):
+ for classifier in sorted(set(classifiers) - set(python_classifiers)):
352
if (
353
not python_classifiers_inserted
354
and classifier > python_classifier_prefix
0 commit comments