File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,6 @@ def stub_package_name(prefix: str) -> str:
76
76
# Package name can have one or two components ('a' or 'a.b').
77
77
#
78
78
# Note that these packages are omitted for now:
79
- # sqlalchemy: It's unclear which stub package to suggest. There's also
80
- # a mypy plugin available.
81
79
# pika: typeshed's stubs are on PyPI as types-pika-ts.
82
80
# types-pika already exists on PyPI, and is more complete in many ways,
83
81
# but is a non-typeshed stubs package.
@@ -180,4 +178,9 @@ def stub_package_name(prefix: str) -> str:
180
178
"xmltodict" : "types-xmltodict" ,
181
179
"xxhash" : "types-xxhash" ,
182
180
"zxcvbn" : "types-zxcvbn" ,
181
+ # Stub packages that are not from typeshed
182
+ # Since these can be installed automatically via --install-types, we have a high trust bar
183
+ # for additions here
184
+ "pandas" : "pandas-stubs" , # https://github.com/pandas-dev/pandas-stubs
185
+ "lxml" : "lxml-stubs" , # https://github.com/lxml/lxml-stubs
183
186
}
You can’t perform that action at this time.
0 commit comments