From 56476f917f84c50f771e867345410a545b4e3266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Dlouh=C3=BD?= Date: Thu, 24 Aug 2023 11:07:47 +0200 Subject: [PATCH] GitHub actions don't test in unsupported Python 3.6, update testing matrix --- .github/workflows/run-tests.yaml | 2 +- tox.ini | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 815d1905..dbb33325 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.6, 3.7, 3.8, 3.9, '3.10' ] + python-version: [ 3.7, 3.8, 3.9, '3.10', '3.11' ] steps: - uses: actions/checkout@v1 diff --git a/tox.ini b/tox.ini index d4a18406..1aefaef8 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ envlist = py{36,37,38,39}-django{2} py{36,37,38,39,310}-django{21,22,3,31,32} py{38,39,310}-django{40} - py{38,39,310}-django{41} + py{38,39,310}-django{41,42} coverage-report [gh-actions] @@ -15,6 +15,7 @@ python = 3.8: py38 3.9: py39 3.10: py310 + 3.11: py311 [testenv] passenv = GITHUB_* @@ -27,7 +28,8 @@ deps= django31: Django>=3.1,<3.2 django32: Django>=3.2,<4.0 django40: Django>=4.0,<4.1 - django41: Django>=4.1,<5.0 + django41: Django>=4.1,<4.2 + django42: Django>=4.2,<5.0 coverage[toml] pillow ipdb