From 8992980fee3de69426db0a3dab8537920807b636 Mon Sep 17 00:00:00 2001 From: awais qureshi Date: Wed, 14 Feb 2024 15:49:45 +0500 Subject: [PATCH 1/2] build: 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 497a53bee..f12c6c9f6 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: [django32, django42] + python-version: ['3.8', '3.11', '3.12'] + toxenv: [django42] steps: - uses: actions/checkout@v1 - name: setup python diff --git a/tox.ini b/tox.ini index c65e6adad..46e3260b9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,8 @@ [tox] -envlist = py38-django{32, 42} +envlist = py{38, 311, 312}-django{32, 42} [testenv] deps = - django32: -r requirements/django.txt django42: Django>=4.2,<4.3 -r{toxinidir}/requirements/test.txt changedir = {toxinidir}/testproject/ From 9ecd3685d821831b27d4663ee3e94175b268e81e Mon Sep 17 00:00:00 2001 From: awais qureshi Date: Wed, 14 Feb 2024 15:53:36 +0500 Subject: [PATCH 2/2] build: adding python3.11 and 3.12 support. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 46e3260b9..48135f0f2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38, 311, 312}-django{32, 42} +envlist = py{38, 311, 312}-django{42} [testenv] deps =