Drop Python 3.8 support in typing[_extensions] and types (#13763)

This commit is contained in:
Joren Hammudoglu
2025-04-02 08:56:56 +02:00
committed by GitHub
parent 0a3d8d2696
commit f6503fd9ab
4 changed files with 77 additions and 112 deletions
+1 -3
View File
@@ -4,11 +4,9 @@ This tests that star imports work when using "all += " syntax.
"""
from __future__ import annotations
import sys
from typing import *
from zipfile import *
if sys.version_info >= (3, 9):
x: Annotated[int, 42]
x: Annotated[int, 42]
p: Path