Skip to content

Commit b131050

Browse files
committed
distutils
1 parent 24d90e2 commit b131050

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

misc/update-stubinfo.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ def main() -> None:
4646
print("Add the following to non_bundled_packages_flat:")
4747
print("=" * 40)
4848
for p in sorted(typeshed_p_to_d.keys() - mypy_p):
49-
if p in {"pika"}: # see comment
49+
if p in {
50+
"pika", # see comment in stubinfo.py
51+
"distutils", # don't recommend types-setuptools here
52+
}:
5053
continue
5154
print(f'"{p}": "{typeshed_p_to_d[p]}",')
5255
print()

0 commit comments

Comments
 (0)