Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 5905ba1

Browse files
author
David Robertson
authored
Run trial tests against Python 3.11 (#13812)
1 parent 9473ebb commit 5905ba1

File tree

5 files changed

+149
-97
lines changed

5 files changed

+149
-97
lines changed

Diff for: .ci/scripts/calculate_jobs.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def set_output(key: str, value: str):
3333

3434
trial_sqlite_tests = [
3535
{
36-
"python-version": "3.7",
36+
"python-version": "3.11",
3737
"database": "sqlite",
3838
"extras": "all",
3939
}
@@ -46,13 +46,13 @@ def set_output(key: str, value: str):
4646
"database": "sqlite",
4747
"extras": "all",
4848
}
49-
for version in ("3.8", "3.9", "3.10")
49+
for version in ("3.8", "3.9", "3.10", "3.11")
5050
)
5151

5252

5353
trial_postgres_tests = [
5454
{
55-
"python-version": "3.7",
55+
"python-version": "3.11",
5656
"database": "postgres",
5757
"postgres-version": "10",
5858
"extras": "all",
@@ -62,7 +62,7 @@ def set_output(key: str, value: str):
6262
if not IS_PR:
6363
trial_postgres_tests.append(
6464
{
65-
"python-version": "3.10",
65+
"python-version": "3.11",
6666
"database": "postgres",
6767
"postgres-version": "14",
6868
"extras": "all",
@@ -71,7 +71,7 @@ def set_output(key: str, value: str):
7171

7272
trial_no_extra_tests = [
7373
{
74-
"python-version": "3.7",
74+
"python-version": "3.11",
7575
"database": "sqlite",
7676
"extras": "",
7777
}

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ jobs:
393393
- python-version: "3.7"
394394
postgres-version: "10"
395395

396-
- python-version: "3.10"
396+
- python-version: "3.11"
397397
postgres-version: "14"
398398

399399
services:

Diff for: changelog.d/13812.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Run unit tests against Python 3.11.

0 commit comments

Comments
 (0)