From e18d85e5a07b26488b35916e3a34ba9fa8dd5229 Mon Sep 17 00:00:00 2001 From: awais qureshi Date: Tue, 2 Apr 2024 13:54:11 +0500 Subject: [PATCH] feat: Adding python3.11 and 3.12 support. --- .github/workflows/ci.yml | 4 ++-- tox.ini | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6efaec..1c67078 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,8 @@ jobs: strategy: matrix: os: [ubuntu-20.04] - python-version: ['3.8'] - toxenv: [quality, docs, django32, django42] + python-version: ['3.8', '3.11', '3.12'] + toxenv: [quality, docs, django42] steps: - uses: actions/checkout@v2 diff --git a/tox.ini b/tox.ini index ef3da1a..b7e4df2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38-django{32, 42} +envlist = py{38,311,312}-django{42} [doc8] ignore = D001 @@ -17,7 +17,6 @@ norecursedirs = .* docs requirements [testenv] deps = - django32: Django>=3.2,<4.0 django42: Django>=4.2,<4.3 -r{toxinidir}/requirements/test.txt commands =