From 10811e892dcd858f67b1e94b7b2f2a8d240bc820 Mon Sep 17 00:00:00 2001 From: Miguel Johnson Date: Wed, 19 Jun 2024 16:17:08 -0400 Subject: [PATCH 1/4] Updating test suite with py312 utilized the django python compatibility chart located here: https://docs.djangoproject.com/en/5.0/faq/install/ --- tox.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index f39ffbfb..a90a5640 100644 --- a/tox.ini +++ b/tox.ini @@ -4,8 +4,8 @@ envlist = black flake8 isort - py{38,39,310,311}-dj{41,42} - py{310,311}-djmain + py{38,39,310,311,312}-dj{41,42} + py{310,311,312}-djmain docs [gh-actions] @@ -14,6 +14,7 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 [testenv] deps = From b565d424b102794e3cfd17b35b989a3cfb4d2fa4 Mon Sep 17 00:00:00 2001 From: Miguel Johnson Date: Wed, 19 Jun 2024 16:24:06 -0400 Subject: [PATCH 2/4] updating CHANGELOG --- CHANGELOG.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 11928849..7ce71bfb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,13 @@ Changelog (Unreleased) ~~~~~~~~~~~~ +5.0.2 (2024-06-19) +~~~~~~~~~~~~~~~~~~ + +* Update `tox.ini` for testing suite to now use Python 3.12. + + **Note:** Python 3.8 will be reaching end-of-life status in October 2024, we will need to come back and remove support for Python 3.8 at that time. + 5.0.1 (2023-10-26) ~~~~~~~~~~~~~~~~~~ From 67bdd555b78c462b923a459ebe7dd75ef1c7c998 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 23:18:20 +0000 Subject: [PATCH 3/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2ec57280..92ecab18 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,7 +8,7 @@ Changelog ~~~~~~~~~~~~~~~~~~ * Update `tox.ini` for testing suite to now use Python 3.12. - + **Note:** Python 3.8 will be reaching end-of-life status in October 2024, we will need to come back and remove support for Python 3.8 at that time. From 8f785ad298af7e755847b4c725c3147f35883201 Mon Sep 17 00:00:00 2001 From: Miguel Johnson Date: Wed, 19 Jun 2024 19:25:36 -0400 Subject: [PATCH 4/4] adding Py 3.12 to the test.yml for github actions --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55daaedb..24c4888c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,6 +24,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" steps: - uses: actions/checkout@v2