GitHub actions: Do not run on 3.10 yet (too many warnings)

This commit is contained in:
Raphael Michel
2022-01-19 17:11:51 +01:00
parent 9e51736232
commit c2bd3dde44
2 changed files with 5 additions and 6 deletions

View File

@@ -18,17 +18,17 @@ jobs:
name: Tests
strategy:
matrix:
python-version: ["3.7", "3.8", "3.10"]
python-version: ["3.7", "3.8", "3.9"]
database: [sqlite, postgres, mysql]
exclude:
- database: mysql
python-version: 3.8
python-version: "3.8"
- database: mysql
python-version: "3.10"
python-version: "3.9"
- database: sqlite
python-version: 3.7
python-version: "3.7"
- database: sqlite
python-version: 3.8
python-version: "3.8"
steps:
- uses: actions/checkout@v2
- uses: getong/mariadb-action@v1.1