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..f2ed745 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{51,-latest}-crispy{-release,-latest}, lint [testenv]