Skip to content

Commit

Permalink
Add Django 5.0 to the list of compatible versions (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
realsama authored Mar 4, 2024
1 parent b26bad9 commit 86ff709
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ name = "django-lexorank"
version = "0.1.3"
description = "This package implements an algorithm similar to JIRA's lexorank, but without using buckets for rebalancing that can be used with Django projects."
authors = ["Alex Rozum <[email protected]>"]
packages = [
{include="django_lexorank"}
]
packages = [{ include = "django_lexorank" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand All @@ -23,7 +21,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.2, <5"
django = ">=3.2"

[tool.poetry.group.dev.dependencies]
pytest-django = "^4.5.2"
Expand All @@ -39,9 +37,7 @@ profile = "black"
[tool.flake8]
max-complexity = 15
max-line-length = 88
per-file-ignores = [
"__init__.py: F401",
]
per-file-ignores = ["__init__.py: F401"]

[tool.mypy]
allow_untyped_globals = true
Expand All @@ -53,19 +49,22 @@ testpaths = "tests"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = django{3.2,4.2}-{py38,py39,py310,py311}
envlist = django{3.2,4.2}-{py38,py39,py310,py311,py312}
django5.0-{py310,py311,py312}
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[testenv]
deps =
django3.2: Django>=3.2
django4.2: Django>=4.2
django5.0: Django>=5.0
pytest
pytest-django
factory-boy
Expand Down

0 comments on commit 86ff709

Please sign in to comment.