⚰️ Remove Python 3.8 from CI and remove Python 3.8 examples from source docs (#14559)

Co-authored-by: Yurii Motov <yurii.motov.monte@gmail.com>
Co-authored-by: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com>
This commit is contained in:
Sebastián Ramírez
2025-12-17 12:41:43 -08:00
committed by GitHub
parent 99ef383398
commit ed97d9dc0c
815 changed files with 1266 additions and 6546 deletions

View File

@@ -6,11 +6,11 @@ from ...utils import needs_pydanticv2
def get_client() -> TestClient:
from docs_src.conditional_openapi import tutorial001
from docs_src.conditional_openapi import tutorial001_py39
importlib.reload(tutorial001)
importlib.reload(tutorial001_py39)
client = TestClient(tutorial001.app)
client = TestClient(tutorial001_py39.app)
return client