Fix Python 3.11 compability matris

This commit is contained in:
Ülgen Sarıkavak 2022-11-28 01:47:45 +03:00
parent 49816bd531
commit aa0650aeb6
2 changed files with 6 additions and 3 deletions

View File

@ -9,10 +9,12 @@ jobs:
max-parallel: 4
matrix:
django: ["3.2", "4.0", "4.1"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10"]
include:
- django: "3.2"
python-version: "3.7"
- django: "4.1"
python-version: "3.11"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}

View File

@ -1,7 +1,8 @@
[tox]
envlist =
py{37,38,39,310,311}-django32,
py{38,39,310,311}-django{40,41,main},
py{37,38,39,310}-django32,
py{38,39,310}-django{40,41,main},
py311-django{41,main}
pre-commit
[gh-actions]