Skip to content

Commit d5ee0f0

Browse files
committed
Support for Django 5.1
1 parent d0177a1 commit d5ee0f0

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.circleci/config.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ workflows:
77
matrix:
88
parameters:
99
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
10-
django-version: ["3.2", "4.2", "5.0"]
10+
django-version: ["3.2", "4.2", "5.0", "5.1"]
1111
exclude:
1212
- python-version: "3.8"
1313
django-version: "5.0"
1414
- python-version: "3.9"
1515
django-version: "5.0"
16+
- python-version: "3.8"
17+
django-version: "5.1"
18+
- python-version: "3.9"
19+
django-version: "5.1"
1620
- coverall:
1721
requires:
1822
- base-test

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ For more general information, view the [readme](README.md).
55
Releases are added to the
66
[github release page](https://github.com/ezhome/django-webpack-loader/releases).
77

8+
## Unreleased
9+
10+
- Add support for Django 5.1
11+
812
## [3.1.0] -- 2024-04-04
913

1014
Support `webpack_asset` template tag to render transformed assets URL: `{% webpack_asset 'path/to/original/file' %} == "/static/assets/resource-3c9e4020d3e3c7a09c68.txt"`

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def rel(*parts):
4848
"Framework :: Django :: 3.2",
4949
"Framework :: Django :: 4.2",
5050
"Framework :: Django :: 5.0",
51+
"Framework :: Django :: 5.1",
5152
"Environment :: Web Environment",
5253
"License :: OSI Approved :: MIT License",
5354
],

tests/tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ minversion = 4.11.1
33
skipsdist = True
44
envlist =
55
py{38,39}-django{32,42}
6-
py{310,311,312}-django{32,42,50}
6+
py{310,311,312}-django{32,42,50,51}
77
py{311,312}-djangomain
88

99
[testenv]
@@ -22,6 +22,7 @@ deps =
2222
django41: django>=4.1,<4.2
2323
django42: django>=4.2,<4.3
2424
django50: django>=5.0,<5.1
25+
django51: django>=5.1,<5.2
2526
djangomain: https://github.com/django/django/archive/main.zip
2627
commands =
2728
coverage run --source=webpack_loader manage.py test {posargs}

0 commit comments

Comments
 (0)