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

Commit

Permalink
Run CI with Python 3.10 and Postgres 14 (#10992)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson authored Oct 5, 2021
1 parent 7036a7a commit 6f6e956
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
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.

0 comments on commit 6f6e956

Please sign in to comment.