From 336e7addb66fd12f53514d4a481d09363f9b1b6f Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Tue, 20 Feb 2024 19:12:07 +0600 Subject: [PATCH] added python 3.12 to CI (#9157) * added python 3.12 to CI * Update tox.ini * Update tox.ini * Update tox.ini --- .github/workflows/main.yml | 1 + tox.ini | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 48b6e7202..756b6d24b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,6 +20,7 @@ jobs: - '3.9' - '3.10' - '3.11' + - '3.12' steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 2b8733d7d..38682615f 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ envlist = {py36,py37,py38,py39,py310}-django32 {py38,py39,py310}-{django40,django41,django42,djangomain} {py311}-{django41,django42,djangomain} + {py312}-{django42,djangomain} base dist docs @@ -25,6 +26,7 @@ deps = djangomain: https://github.com/django/django/archive/main.tar.gz -rrequirements/requirements-testing.txt -rrequirements/requirements-optionals.txt + setuptools [testenv:base] ; Ensure optional dependencies are not required @@ -57,3 +59,6 @@ ignore_outcome = true [testenv:py311-djangomain] ignore_outcome = true + +[testenv:py312-djangomain] +ignore_outcome = true