Skip to content
Merged

Fix CI #1932

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build_scripts/build_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ def run_cmake(force_clean=False, log_output=False, debug_build=False):
"-G",
"Ninja",
f"-DPython_ADDITIONAL_VERSIONS={current_config.py_version}",
"-DCMAKE_POLICY_VERSION_MINIMUM=3.16",
]
if debug_build:
cmd.append("-DCMAKE_BUILD_TYPE=Debug")
Expand Down
3 changes: 2 additions & 1 deletion pytype/overlays/functools_overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@

from collections.abc import Mapping, Sequence
import threading
from typing import Any, Self, TYPE_CHECKING
from typing import Any, TYPE_CHECKING

from pytype.abstract import abstract
from pytype.abstract import function
from pytype.abstract import mixin
from pytype.overlays import overlay
from pytype.overlays import special_builtins
from pytype.typegraph import cfg
from typing_extensions import Self

if TYPE_CHECKING:
from pytype import context # pylint: disable=g-import-not-at-top
Expand Down
Loading