fix(ingest): bound types-requests (#8895)

This commit is contained in:
Harshal Sheth 2023-09-25 16:24:19 -04:00 committed by GitHub
parent 874109f76e
commit 53eaac5963
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -405,7 +405,12 @@ mypy_stubs = {
"types-pkg_resources",
"types-six",
"types-python-dateutil",
"types-requests>=2.28.11.6",
# We need to avoid 2.31.0.5 and 2.31.0.4 due to
# https://github.com/python/typeshed/issues/10764. Once that
# issue is resolved, we can remove the upper bound and change it
# to a != constraint.
# We have a PR up to fix the underlying issue: https://github.com/python/typeshed/pull/10776.
"types-requests>=2.28.11.6,<=2.31.0.3",
"types-toml",
"types-PyMySQL",
"types-PyYAML",