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

Run CI with Python 3.10 and Postgres 14 #10992

Merged
merged 2 commits into from
Oct 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,22 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
database: ["sqlite"]
include:
# Newest Python without optional deps
- python-version: "3.9"
- python-version: "3.10"
toxenv: "py-noextras,combine"

# Oldest Python with PostgreSQL
- python-version: "3.6"
database: "postgres"
postgres-version: "9.6"

# Newest Python with PostgreSQL
- python-version: "3.9"
# Newest Python with newest PostgreSQL
- python-version: "3.10"
database: "postgres"
postgres-version: "13"
postgres-version: "14"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -256,8 +256,8 @@ jobs:
- python-version: "3.6"
postgres-version: "9.6"

- python-version: "3.9"
postgres-version: "13"
- python-version: "3.10"
postgres-version: "14"

services:
postgres:
Expand Down
1 change: 1 addition & 0 deletions changelog.d/10992.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update GHA config to run tests against Python 3.10 and PostgreSQL 14.