From abaf1d6a4b9df196f1cf8471b30666031b1f6aa0 Mon Sep 17 00:00:00 2001 From: awais qureshi Date: Sat, 30 Mar 2024 13:30:32 +0500 Subject: [PATCH] feat: adding python3.11 and 3.12 support. --- .github/workflows/ci.yml | 4 ++++ tox.ini | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40cddbec..ebe9425b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,8 @@ jobs: os: [ubuntu-20.04] python-version: - '3.8' + - '3.11' + - '3.12' toxenv: [py, quality, django42] steps: @@ -53,6 +55,8 @@ jobs: os: [ubuntu-20.04] python-version: - '3.8' + - '3.11' + - '3.12' steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index d936546a..bca313d2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38}-django{42} +envlist = py{38,311,312}-django{42} skipsdist = true [isort]