Skip to content

Commit aecbbbb

Browse files
authored
Added Python 3.13 support. (#192)
1 parent bb9021e commit aecbbbb

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

.github/workflows/publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- "3.10"
1818
- "3.11"
1919
- "3.12"
20+
- "3.13"
2021

2122
steps:
2223
- uses: actions/checkout@v3

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- "3.10"
2020
- "3.11"
2121
- "3.12"
22+
- "3.13"
2223

2324
steps:
2425
- uses: actions/checkout@v3

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG FOR CRISPY-BOOTSTRAP5
22

3+
## Next Release
4+
* Added Python 3.13 support.
5+
36
## 2024.10 (2024-10-05)
47
* Added support for Django 5.1.
58
* Fixed `accordion.html`, `accordion-group.html` and `tab.html` templates to render `css_class` attribute.

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers=[
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2829
"Topic :: Internet :: WWW/HTTP",
2930
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
3031
"Topic :: Software Development :: Libraries :: Python Modules",

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist =
33
{py38,py39,py310,py311}-django{42}-crispy{-release,-latest},
44
{py310,py311,py312}-django{50,51,-latest}-crispy{-release,-latest},
5+
{py313}-django{51,-latest}-crispy{-release,-latest},
56
lint
67

78
[testenv]

0 commit comments

Comments
 (0)