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

Commit 2e2cffe

Browse files
author
David Robertson
committed
Cherry-pick "Run trial tests against Python 3.11 (#13812)" and fixup commit
4f5d492 The release branch CI is failing because poetry seems unable to install wrapt 1.13.3 when run under CPython 3.11. Develop has already bumped wrapt for 3.11 compatibility. Cherry-pick that commit here to try and get CI going again.
1 parent b1379a7 commit 2e2cffe

File tree

5 files changed

+146
-94
lines changed

5 files changed

+146
-94
lines changed

.ci/scripts/calculate_jobs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ 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

@@ -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",

.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:

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)