From 47bcd9df8d275527e5f9cc5c1cdc2ccb53aaf38a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 26 Nov 2023 15:20:01 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Add=20support=20for=20Pyth?= =?UTF-8?q?on=203.11=20and=20Python=203.12=20(#710)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 ++ docs/tutorial/index.md | 3 ++- pyproject.toml | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c3b07f484e..9f2688dff7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,6 +25,8 @@ jobs: - "3.8" - "3.9" - "3.10" + - "3.11" + - "3.12" fail-fast: false steps: diff --git a/docs/tutorial/index.md b/docs/tutorial/index.md index 74107776c2..773ab3b4a9 100644 --- a/docs/tutorial/index.md +++ b/docs/tutorial/index.md @@ -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: diff --git a/pyproject.toml b/pyproject.toml index 515bbaf66c..9bfc434cfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",