8000 Bump mariadb version by grooverdan · Pull Request #1123 · PyMySQL/PyMySQL · GitHub
[go: up one dir, main page]

Skip to content

Bump mariadb version #1123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 25, 2023
Merged
Changes from 1 commit
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
Next Next commit
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
  • Loading branch information
grooverdan committed May 25, 2023
commit 2350af70f4cfd8fd50eb395f62383208fe69680c
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
0