Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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‎

Lines changed: 5 additions & 1 deletion
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‎

Lines changed: 4 additions & 0 deletions
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‎

Lines changed: 1 addition & 0 deletions
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‎

Lines changed: 2 additions & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /