
xmltodict now raises an error while trying to parse the HTML content of https://pypi.org/simple/ page. So use BeautifulSoup HTML parser instead as it is aleady a requirement of swh-lister and it does not fail parsing the PyPI HTML page. Also drop no longer used xmltodict in requirements.
38 lines
653 B
INI
38 lines
653 B
INI
[mypy]
|
|
namespace_packages = True
|
|
warn_unused_ignores = True
|
|
|
|
# 3rd party libraries without stubs (yet)
|
|
|
|
[mypy-bs4.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-celery.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-debian.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-iso8601.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-launchpadlib.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-lazr.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-pkg_resources.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-pytest.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-pytest_postgresql.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-requests_mock.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-urllib3.util.*]
|
|
ignore_missing_imports = True
|