Drop support for Python 3.8 in CI and docs (#1695)

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-26 03:03:06 -08:00
committed by GitHub
parent d7b596b1dd
commit afc0c324cf
207 changed files with 186 additions and 3738 deletions

View File

@@ -40,7 +40,7 @@ def get_module(request: pytest.FixtureRequest) -> ModuleType:
@pytest.mark.parametrize(
"module",
[
"tutorial001",
pytest.param("tutorial001_py39"),
pytest.param("tutorial001_py310", marks=needs_py310),
],
indirect=True,
@@ -53,7 +53,7 @@ def test_tutorial_001(print_mock: PrintMock, module: ModuleType):
@pytest.mark.parametrize(
"module",
[
"tutorial002",
pytest.param("tutorial002_py39"),
pytest.param("tutorial002_py310", marks=needs_py310),
],
indirect=True,

View File

@@ -42,7 +42,7 @@ def get_module(request: pytest.FixtureRequest) -> ModuleType:
@pytest.mark.parametrize(
"module",
[
"tutorial003",
pytest.param("tutorial003_py39"),
pytest.param("tutorial003_py310", marks=needs_py310),
],
indirect=True,
@@ -55,7 +55,7 @@ def test_tutorial_003(print_mock: PrintMock, module: ModuleType):
@pytest.mark.parametrize(
"module",
[
"tutorial004",
pytest.param("tutorial004_py39"),
pytest.param("tutorial004_py310", marks=needs_py310),
],
indirect=True,