ci: add Python 3.12 in test matrix (#644)

This commit is contained in:
Stevie Gayet
2023-08-21 10:54:30 +02:00
committed by GitHub
parent fc6b9da632
commit a72b7aa707
2 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,7 @@ jobs:
PIP_DISABLE_PIP_VERSION_CHECK: 1
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- python-version: "3.11"
mariadb: 1
@ -43,6 +43,7 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "requirements.txt"
allow-prereleases: true
- name: Install mysqlclient
run: |

View File

@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
]