Skip to content

Commit 839374f

Browse files
authored
Added Python 3.13 support. (#33)
1 parent 44eb449 commit 839374f

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-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

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG FOR CRISPY-BOOTSTRAP4
22

3+
## Next Release
4+
5+
* Added support for Python 3.13.
6+
37
## 2024.10 (2024-10-05)
48

59
* Fixed ignoring of `css_class` attribute in `accordion.html`, `accordion-group.html` and `tab.html` templates.

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def get_long_description():
4848
"Programming Language :: Python :: 3.10",
4949
"Programming Language :: Python :: 3.11",
5050
"Programming Language :: Python :: 3.12",
51+
"Programming Language :: Python :: 3.13",
5152
"Topic :: Internet :: WWW/HTTP",
5253
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
5354
"Topic :: Software Development :: Libraries :: Python Modules",

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ max_line_length=118
55
envlist =
66
{py38,py39,py310,py311}-django{42}-crispy{2,-latest},
77
{py310,py311,py312}-django{50,51,-latest}-crispy{2,-latest},
8+
{py313}-django{51,-latest}-crispy{2,-latest},
89
lint
910

1011
[testenv]

0 commit comments

Comments
 (0)