We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cd6aa3 commit cda0c74Copy full SHA for cda0c74
backend/src/hatchling/metadata/core.py
@@ -885,8 +885,6 @@ def classifiers(self) -> list[str]:
885
"""
886
https://peps.python.org/pep-0621/#classifiers
887
888
- import bisect
889
-
890
if 'classifiers' in self.config:
891
classifiers = self.config['classifiers']
892
if 'classifiers' in self.dynamic:
@@ -904,6 +902,8 @@ def classifiers(self) -> list[str]:
904
902
905
903
verify_classifiers = not os.environ.get('HATCH_METADATA_CLASSIFIERS_NO_VERIFY')
906
if verify_classifiers:
+ import bisect
+
907
import trove_classifiers
908
909
known_classifiers = trove_classifiers.classifiers | self._extra_classifiers
0 commit comments