https://github.com/SoftwareHeritage/swh-model
Revision a3b6a6448011c77202909549c59e39a49acf0cb4 authored by Nicolas Dandrimont on 16 November 2020, 17:51:31 UTC, committed by Nicolas Dandrimont on 16 November 2020, 17:51:31 UTC
All reverse dependencies have been updated to avoid using it now, so it can now
be removed, paving the way to recycle it into an intrinsic identifier.
1 parent 8e121bb
Raw File
Tip revision: a3b6a6448011c77202909549c59e39a49acf0cb4 authored by Nicolas Dandrimont on 16 November 2020, 17:51:31 UTC
Drop backwards-compatibility support for RawExtrinsicMetadata.id
Tip revision: a3b6a64
mypy.ini
[mypy]
namespace_packages = True
warn_unused_ignores = True

# 3rd party libraries without stubs (yet)

[mypy-attrs_strict.*]  # a bit sad, but...
ignore_missing_imports = True

[mypy-deprecated.*]
ignore_missing_imports = True

[mypy-django.*]  # false positive, only used my hypotesis' extras
ignore_missing_imports = True

[mypy-dulwich.*]
ignore_missing_imports = True

[mypy-iso8601.*]
ignore_missing_imports = True

[mypy-pkg_resources.*]
ignore_missing_imports = True

[mypy-pyblake2.*]
ignore_missing_imports = True

[mypy-pytest.*]
ignore_missing_imports = True
back to top