Skip to content

Commit

Permalink
'Support' for Django 5.0. Extended testing and added classifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverandrich committed Nov 1, 2023
1 parent cdfd6f7 commit 9a5d171
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ classifiers = [
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
]
packages = [{ include = "django_tailwind_cli", from = "src" }]

[tool.poetry.dependencies]
python = "^3.8.1"
django = ">=3.2,<5.0"
django = ">=3.2"
certifi = "^2023.7.22"
django-extensions = { version = "^3.2.1", optional = true }
werkzeug = { version = "^3.0.0", optional = true }
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ envlist =
django32-py{38,39,310}
django41-py{38,39,310,311}
django42-py{38,39,310,311,312}
django50-py{310,311,312}

[gh-actions]
python =
Expand All @@ -22,6 +23,7 @@ deps =
django32: Django>=3.2,<4.0
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
django50: Django>=5.0b1,<5.1
extras = django-extensions
commands =
pytest --cov-append
Expand Down

0 comments on commit 9a5d171

Please sign in to comment.