Skip to content

Commit 148c42c

Browse files
committed
Fix oss test issues.
* Bump Python 3.7 version. * typing.final -> typing_extensions.final.
1 parent 8d6dec4 commit 148c42c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pytype/pytype_source_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def list_pytype_files(suffix):
126126

127127
# When our open-source tests run on GitHub Actions, we install a Python 3.7
128128
# interpreter for vm_test.
129-
CUSTOM_PY37_EXE = "/opt/hostedtoolcache/Python/3.7.12/x64/bin/python3.7"
129+
CUSTOM_PY37_EXE = "/opt/hostedtoolcache/Python/3.7.13/x64/bin/python3.7"
130130

131131

132132
def get_custom_python_exe(python_version):

pytype/tests/test_pickle1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def f(x: UserDict.UserDict) -> None: ...
189189

190190
def test_class_decorator(self):
191191
foo = """
192-
from typing import final
192+
from typing_extensions import final
193193
@final
194194
class A:
195195
def f(self): ...

0 commit comments

Comments
 (0)