]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
⬆️ Add support for Python 3.11 and Python 3.12 (#710)
authorSebastián Ramírez <tiangolo@gmail.com>
Sun, 26 Nov 2023 14:20:01 +0000 (15:20 +0100)
committerGitHub <noreply@github.com>
Sun, 26 Nov 2023 14:20:01 +0000 (15:20 +0100)
.github/workflows/test.yml
docs/tutorial/index.md
pyproject.toml

index c3b07f484eff0f71b961e23f3995c5dfca8784db..9f2688dff73b3edaf11df2b6432e9eb0d0011ac3 100644 (file)
@@ -25,6 +25,8 @@ jobs:
           - "3.8"
           - "3.9"
           - "3.10"
+          - "3.11"
+          - "3.12"
       fail-fast: false
 
     steps:
index 74107776c2344a928f7b9b8da9b77eae70541432..773ab3b4a967e86f00cf2fd4aa91f77606cd2836 100644 (file)
@@ -79,9 +79,10 @@ There's a chance that you have multiple Python versions installed.
 
 You might want to try with the specific versions, for example with:
 
+* `python3.11`
+* `python3.12`
 * `python3.10`
 * `python3.9`
-* `python3.8`
 
 The code would look like this:
 
index 515bbaf66ce99bab7ab0c251fad9aa5e902cc003..9bfc434cfb7d9963b508c1c570e46446db576f30 100644 (file)
@@ -21,6 +21,8 @@ classifiers = [
     "Programming Language :: Python :: 3.8",
     "Programming Language :: Python :: 3.9",
     "Programming Language :: Python :: 3.10",
+    "Programming Language :: Python :: 3.11",
+    "Programming Language :: Python :: 3.12",
     "Topic :: Database",
     "Topic :: Database :: Database Engines/Servers",
     "Topic :: Internet",