From dadcad5aac762fc596e4dc7c531c9dae92f943a5 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 11 Dec 2025 09:16:21 +0100 Subject: [PATCH] Remove code examples for Python 3.8 in `openapi_callbacks` --- .../openapi_callbacks/{tutorial001.py => tutorial001_py39.py} | 0 tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename docs_src/openapi_callbacks/{tutorial001.py => tutorial001_py39.py} (100%) diff --git a/docs_src/openapi_callbacks/tutorial001.py b/docs_src/openapi_callbacks/tutorial001_py39.py similarity index 100% rename from docs_src/openapi_callbacks/tutorial001.py rename to docs_src/openapi_callbacks/tutorial001_py39.py diff --git a/tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py b/tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py index 2df2b9889..975e07cbd 100644 --- a/tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py +++ b/tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py @@ -11,7 +11,7 @@ from tests.utils import needs_py310 @pytest.fixture( name="mod", params=[ - pytest.param("tutorial001"), + pytest.param("tutorial001_py39"), pytest.param("tutorial001_py310", marks=needs_py310), ], )