Skip to content

Commit 2ac8521

Browse files
committed
Relax Django version requirement to >=4.0.
1 parent 6dd1f35 commit 2ac8521

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.21.1
4+
5+
- Relaxed the minimum Django version to >=4.0.
6+
37
## 2.21.0
48

59
- Added `install_pycharm_workaround` and `remove_pycharm_workaround` management commands. [#142](https://github.com/django-commons/django-tailwind-cli/issues/142)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Checkout the detailed [installation guide](https://django-tailwind-cli.rtfd.io/l
7676

7777
## Requirements
7878

79-
Python 3.9 or newer with Django >= 4.2.
79+
Python 3.9 or newer with Django >= 4.0.
8080

8181
## Documentation
8282

pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,16 @@ classifiers = [
1818
"Topic :: Software Development :: Libraries",
1919
"Topic :: Utilities",
2020
"Environment :: Web Environment",
21+
"Framework :: Django :: 4.0",
22+
"Framework :: Django :: 4.1",
2123
"Framework :: Django :: 4.2",
2224
"Framework :: Django :: 5.0",
2325
"Framework :: Django :: 5.1",
2426
]
2527
dynamic = ["version"]
2628
requires-python = ">=3.9"
2729
dependencies = [
28-
"django>=4.2",
30+
"django>=4.0",
2931
"django-typer>=2.1.2",
3032
"requests>=2.32.3",
3133
]

tox.ini

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[tox]
22
isolated_build = true
33
envlist =
4+
django40-py{39,310}
5+
django41-py{39,310,311}
46
django42-py{39,310,311,312}
57
django50-py{310,311,312}
68
django51-py{310,311,312,313}
@@ -21,6 +23,8 @@ deps =
2123
pytest-mock
2224
pytest-django
2325
setuptools; python_version < "3.10"
26+
django40: Django>=4.0,<4.1
27+
django41: Django>=4.1,<4.2
2428
django42: Django>=4.2,<5.0
2529
django50: Django>=5.0,<5.1
2630
django51: Django>=5.1,<5.2

0 commit comments

Comments
 (0)