From 2350af70f4cfd8fd50eb395f62383208fe69680c Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Thu, 25 May 2023 17:10:38 +1000 Subject: [PATCH 1/2] github: workflows test current mariadb versions Drop EOL MariaDB versions: * 10.3 * 10.7 * 10.8 Add 10.6, and :lts version - (10.11) ref: https://mariadb.org/about/#maintenance-policy --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c3275cca..6b1e0f32 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,16 +15,16 @@ jobs: fail-fast: false matrix: include: - - db: "mariadb:10.3" + - db: "mariadb:10.4" py: "3.8" - db: "mariadb:10.5" py: "3.7" - - db: "mariadb:10.7" + - db: "mariadb:10.6" py: "3.11" - - db: "mariadb:10.8" + - db: "mariadb:lts" py: "3.9" - db: "mysql:5.7" From b79e0810a7e02913e9417e3e8dbedb8d37c99d56 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Thu, 25 May 2023 17:14:21 +1000 Subject: [PATCH 2/2] README - MariaDB minimum version 10.4 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e6a6bf2..32f5df2f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This package contains a pure-Python MySQL client library, based on [PEP - [PyPy](https://pypy.org/) : Latest 3.x version - MySQL Server -- one of the following: - [MySQL](https://www.mysql.com/) \>= 5.7 - - [MariaDB](https://mariadb.org/) \>= 10.3 + - [MariaDB](https://mariadb.org/) \>= 10.4 ## Installation