We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a66ab2 commit 93d8b0dCopy full SHA for 93d8b0d
setuptools/config/pyprojecttoml.py
@@ -29,6 +29,11 @@ def load_file(filepath: _Path) -> dict:
29
def validate(config: dict, filepath: _Path) -> bool:
30
from . import _validate_pyproject as validator
31
32
+ trove_classifier = validator.FORMAT_FUNCTIONS.get("trove-classifier")
33
+ if hasattr(trove_classifier, "_disable_download"):
34
+ # Improve reproducibility by default. See issue 31 for validate-pyproject.
35
+ trove_classifier._disable_download() # type: ignore
36
+
37
try:
38
return validator.validate(config)
39
except validator.ValidationError as ex:
0 commit comments