summary refs log tree commit diff
path: root/.ci
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-10-17 14:41:10 -0400
committerGitHub <noreply@github.com>2023-10-17 14:41:10 -0400
commit68d9559fef16df1fec278100026217457da5a7a3 (patch)
treefa467c471a7c3cb8101944d34d3cd563b40b4933 /.ci
parentUpdate the changelog. (diff)
downloadsynapse-68d9559fef16df1fec278100026217457da5a7a3.tar.xz
Test against Python 3.12 release (#16511)
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/scripts/calculate_jobs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/scripts/calculate_jobs.py b/.ci/scripts/calculate_jobs.py
index 7575683ab4..ab1d214727 100755
--- a/.ci/scripts/calculate_jobs.py
+++ b/.ci/scripts/calculate_jobs.py
@@ -47,7 +47,7 @@ if not IS_PR:
             "database": "sqlite",
             "extras": "all",
         }
-        for version in ("3.9", "3.10", "3.11", "3.12.0-rc.2")
+        for version in ("3.9", "3.10", "3.11", "3.12")
     )
 
 trial_postgres_tests = [
@@ -62,7 +62,7 @@ trial_postgres_tests = [
 if not IS_PR:
     trial_postgres_tests.append(
         {
-            "python-version": "3.11",
+            "python-version": "3.12",
             "database": "postgres",
             "postgres-version": "16",
             "extras": "all",