From f9e2133e7f1f327dd26b27aa6bc737c703264330 Mon Sep 17 00:00:00 2001 From: David Smith Date: Mon, 18 Nov 2024 21:40:00 +0000 Subject: [PATCH 1/2] Added Python 3.13 support. --- .github/workflows/publish.yml | 1 + .github/workflows/test.yml | 1 + CHANGELOG.md | 3 +++ pyproject.toml | 1 + tox.ini | 1 + 5 files changed, 7 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8e3a628..339747e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,6 +17,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06efd1f..3347da0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c960f1..e9048d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # CHANGELOG FOR CRISPY-BOOTSTRAP5 +## Next Release +* Added Python 3.13 support. + ## 2024.10 (2024-10-05) * Added support for Django 5.1. * Fixed `accordion.html`, `accordion-group.html` and `tab.html` templates to render `css_class` attribute. diff --git a/pyproject.toml b/pyproject.toml index 0a6217f..548cb5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers=[ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules", diff --git a/tox.ini b/tox.ini index 54d828f..37614e5 100644 --- a/tox.ini +++ b/tox.ini @@ -2,6 +2,7 @@ envlist = {py38,py39,py310,py311}-django{42}-crispy{-release,-latest}, {py310,py311,py312}-django{50,51,-latest}-crispy{-release,-latest}, + {py313}-django{50,51,-latest}-crispy{-release,-latest}, lint [testenv] From 1146eb72f71f593792c61d087f3d72b7acdb1887 Mon Sep 17 00:00:00 2001 From: David Smith <39445562+smithdc1@users.noreply.github.com> Date: Tue, 19 Nov 2024 06:42:25 +0000 Subject: [PATCH 2/2] Update tox.ini --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 37614e5..f2ed745 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ envlist = {py38,py39,py310,py311}-django{42}-crispy{-release,-latest}, {py310,py311,py312}-django{50,51,-latest}-crispy{-release,-latest}, - {py313}-django{50,51,-latest}-crispy{-release,-latest}, + {py313}-django{51,-latest}-crispy{-release,-latest}, lint [testenv]