From c662f4014a67347597531f903a582df9071959f6 Mon Sep 17 00:00:00 2001 From: Tony Locke Date: Mon, 13 Nov 2023 19:35:35 +0000 Subject: [PATCH] PostgreSQL versions: add 16, drop 11 --- .github/workflows/test.yml | 4 ++-- README.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6fbebb9..c2aca4f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: python-version: ["3.8", "3.9", "3.10", "3.11"] - postgresql-version: [15, 14, 13, 12, 11] + postgresql-version: [16, 15, 14, 13, 12] container: image: python:${{ matrix.python-version }} @@ -54,7 +54,7 @@ jobs: strategy: matrix: python-version: ["3.11"] - postgresql-version: ["15", "11"] + postgresql-version: ["16", "12"] auth-type: [md5, gss, password, scram-sha-256] container: diff --git a/README.rst b/README.rst index 71e0fea..9a78cd9 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,7 @@ pg8000 pg8000 is a pure-`Python `_ `PostgreSQL `_ driver that complies with `DB-API 2.0 `_. It is tested on Python -versions 3.8+, on CPython and PyPy, and PostgreSQL versions 11+. pg8000's name comes +versions 3.8+, on CPython and PyPy, and PostgreSQL versions 12+. pg8000's name comes from the belief that it is probably about the 8000th PostgreSQL interface for Python. pg8000 is distributed under the BSD 3-clause license.