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

Commit

Permalink
Cherry-pick "Run trial tests against Python 3.11 (#13812)" and fixup …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
David Robertson committed Nov 3, 2022
1 parent b1379a7 commit 2e2cffe
Show file tree
Hide file tree
Showing 5 changed files with 146 additions and 94 deletions.
4 changes: 2 additions & 2 deletions .ci/scripts/calculate_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def set_output(key: str, value: str):
"database": "sqlite",
"extras": "all",
}
for version in ("3.8", "3.9", "3.10")
for version in ("3.8", "3.9", "3.10", "3.11")
)


Expand All @@ -62,7 +62,7 @@ def set_output(key: str, value: str):
if not IS_PR:
trial_postgres_tests.append(
{
"python-version": "3.10",
"python-version": "3.11",
"database": "postgres",
"postgres-version": "14",
"extras": "all",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ jobs:
- python-version: "3.7"
postgres-version: "10"

- python-version: "3.10"
- python-version: "3.11"
postgres-version: "14"

services:
Expand Down
1 change: 1 addition & 0 deletions changelog.d/13812.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Run unit tests against Python 3.11.
Loading

0 comments on commit 2e2cffe

Please sign in to comment.