Skip to content

Commit 517ed80

Browse files
fix #953 - info log level for missing tool section
this ensures we dont spam projects
1 parent 1ecf351 commit 517ed80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/setuptools_scm/_integration/setuptools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,6 @@ def infer_version(dist: setuptools.Distribution) -> None:
116116
try:
117117
config = _config.Configuration.from_file(dist_name=dist_name)
118118
except LookupError as e:
119-
log.warning(e, exc_info=True)
119+
log.info(e, exc_info=True)
120120
else:
121121
_assign_version(dist, config)

0 commit comments

Comments
 (0)