From 72a92130065761467fbefa32109220d495bd6179 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Fri, 12 Apr 2024 10:40:46 +0300 Subject: [PATCH] Add Django 5.0/Python 3.11 to test matrix --- .github/workflows/tests.yml | 2 ++ tox.ini | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e9bd7bf5e..37d927d3f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,6 +16,8 @@ jobs: env: py39-django40 - python: "3.10" env: py310-django40 + - python: "3.11" + env: py311-django50 name: "Python ${{ matrix.versions.python }} - ${{ matrix.versions.env }}" runs-on: ubuntu-latest diff --git a/tox.ini b/tox.ini index 079ad91f3..fbcbde66f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,7 @@ [tox] envlist = py{38}-django40 py38-django40 + py311-django50 [testenv] setenv = @@ -9,5 +10,6 @@ deps = -rrequirements/requirements-testing.txt coverage django40: Django>=4.0,<4.1 + django50: Django>=5.0,<5.1 commands = ./runtests.py {posargs} allowlist_externals = *