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 24d90e2 commit b131050Copy full SHA for b131050
misc/update-stubinfo.py
@@ -46,7 +46,10 @@ def main() -> None:
46
print("Add the following to non_bundled_packages_flat:")
47
print("=" * 40)
48
for p in sorted(typeshed_p_to_d.keys() - mypy_p):
49
- if p in {"pika"}: # see comment
+ if p in {
50
+ "pika", # see comment in stubinfo.py
51
+ "distutils", # don't recommend types-setuptools here
52
+ }:
53
continue
54
print(f'"{p}": "{typeshed_p_to_d[p]}",')
55
print()
0 commit comments