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

@@ -236,10 +236,10 @@ Now let's review all that code:
////
//// tab | Python 3.8+
//// tab | Python 3.9+
```{ .python .annotate hl_lines="44-55" }
{!./docs_src/tutorial/update/tutorial002.py!}
{!./docs_src/tutorial/update/tutorial002_py39.py!}
```
{!./docs_src/tutorial/update/annotations/en/tutorial002.md!}
@@ -272,12 +272,12 @@ This also means that you can update several fields (attributes, columns) at once
////
//// tab | Python 3.8+
//// tab | Python 3.9+
```{ .python .annotate hl_lines="15-17 19-21 23" }
# Code above omitted 👆
{!./docs_src/tutorial/update/tutorial004.py[ln:44-70]!}
{!./docs_src/tutorial/update/tutorial004_py39.py[ln:44-70]!}
# Code below omitted 👇
```
@@ -296,10 +296,10 @@ This also means that you can update several fields (attributes, columns) at once
////
//// tab | Python 3.8+
//// tab | Python 3.9+
```Python
{!./docs_src/tutorial/update/tutorial004.py!}
{!./docs_src/tutorial/update/tutorial004_py39.py!}
```
////