Skip to content
Snippets Groups Projects
Unverified Commit 80ad02e1 authored by Quentin Gliech's avatar Quentin Gliech Committed by GitHub
Browse files

Ensure Python 3.13 and PostgreSQL 17 compatibility (#17752)

This adds Python 3.13.0 to the trial test matrix

Also updates `cffi` and `zope.interface` in the locked dependencies to
make sure we have versions compatible with Python 3.13. For some
reasons, they are not being picked up by dependabot.
parent 9512b84a
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ if not IS_PR: ...@@ -53,7 +53,7 @@ if not IS_PR:
"database": "sqlite", "database": "sqlite",
"extras": "all", "extras": "all",
} }
for version in ("3.9", "3.10", "3.11", "3.12") for version in ("3.9", "3.10", "3.11", "3.12", "3.13")
) )
trial_postgres_tests = [ trial_postgres_tests = [
...@@ -68,9 +68,9 @@ trial_postgres_tests = [ ...@@ -68,9 +68,9 @@ trial_postgres_tests = [
if not IS_PR: if not IS_PR:
trial_postgres_tests.append( trial_postgres_tests.append(
{ {
"python-version": "3.12", "python-version": "3.13",
"database": "postgres", "database": "postgres",
"postgres-version": "16", "postgres-version": "17",
"extras": "all", "extras": "all",
} }
) )
......
Add Python 3.13 and Postgres 17 to the test matrix.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment