Skip to content

Commit e13c48b

Browse files
committed
Bump invalid specifier log to warning level
1 parent 05c2d21 commit e13c48b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pip/utils/packaging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def check_dist_requires_python(dist):
5757
'.'.join(map(str, sys.version_info[:3])),)
5858
)
5959
except specifiers.InvalidSpecifier as e:
60-
logger.debug(
60+
logger.warning(
6161
"Package %s has an invalid Requires-Python entry %s - %s" % (
6262
dist.project_name, requires_python, e))
6363
return

0 commit comments

Comments
 (0)