diff --git a/stubs/typed-ast/METADATA.toml b/stubs/typed-ast/METADATA.toml index 97ceca8aa..c7bd82d9b 100644 --- a/stubs/typed-ast/METADATA.toml +++ b/stubs/typed-ast/METADATA.toml @@ -1 +1,4 @@ version = "1.5.*" + +[tool.stubtest] +ignore_missing_stub = false diff --git a/stubs/typed-ast/typed_ast/ast3.pyi b/stubs/typed-ast/typed_ast/ast3.pyi index 230a6ac99..02abd13c5 100644 --- a/stubs/typed-ast/typed_ast/ast3.pyi +++ b/stubs/typed-ast/typed_ast/ast3.pyi @@ -3,6 +3,8 @@ from collections.abc import Iterator from typing import Any from typing_extensions import TypeAlias +LATEST_MINOR_VERSION: int + class NodeVisitor: def visit(self, node: AST) -> Any: ... def generic_visit(self, node: AST) -> None: ...