Skip to content

Commit

Permalink
Relax Django version requirement to >=4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverandrich committed Dec 7, 2024
1 parent 6dd1f35 commit 2ac8521
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.21.1

- Relaxed the minimum Django version to >=4.0.

## 2.21.0

- Added `install_pycharm_workaround` and `remove_pycharm_workaround` management commands. [#142](https://github.com/django-commons/django-tailwind-cli/issues/142)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Checkout the detailed [installation guide](https://django-tailwind-cli.rtfd.io/l

## Requirements

Python 3.9 or newer with Django >= 4.2.
Python 3.9 or newer with Django >= 4.0.

## Documentation

Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"django>=4.2",
"django>=4.0",
"django-typer>=2.1.2",
"requests>=2.32.3",
]
Expand Down
4 changes: 4 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[tox]
isolated_build = true
envlist =
django40-py{39,310}
django41-py{39,310,311}
django42-py{39,310,311,312}
django50-py{310,311,312}
django51-py{310,311,312,313}
Expand All @@ -21,6 +23,8 @@ deps =
pytest-mock
pytest-django
setuptools; python_version < "3.10"
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2
Expand Down

0 comments on commit 2ac8521

Please sign in to comment.