Skip to content

Commit

Permalink
Change dependencies to allow Django 5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ACK1D committed Dec 7, 2023
1 parent a3efa8f commit 9c2849e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ classifiers = [
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"Django>=3.2,<5.0",
"Django>=3.2,<5.1",
"Wagtail>=4.1",
"polib>=1.1,<2.0",
"typing_extensions>=4.0"
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ envlist =
python{3.8,3.9,3.10}-django{3.2,4.1}-wagtail{4.1}-{sqlite,postgres12}
python{3.8,3.9,3.10,3.11}-django{4.2}-wagtail{5.1,5.2}-{sqlite,postgres15}
python{3.12}-django{4.2}-wagtail{5.2}-{sqlite,postgres15}
python{3.10,3.11,3.12}-django{5.0}-wagtail{5.2.2}-{sqlite,postgres15}

[gh-actions]
python =
Expand Down Expand Up @@ -35,6 +36,7 @@ deps =
django3.2: Django>=3.2,<3.3
django4.1: Django>=4.1,<4.2
django4.2: Django>=4.2,<5.0
django5.0: Django>=5.0,<5.1

wagtail4.1: wagtail>=4.1,<4.2
wagtail5.1: wagtail>=5.1,<5.2
Expand Down
2 changes: 1 addition & 1 deletion wagtail_localize/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@


# release must be one of alpha, beta, rc, or final
VERSION = (1, 7, 0, "rc", 1)
VERSION = (1, 7, 1, "beta", 1)

__version__ = get_version(VERSION)

0 comments on commit 9c2849e

Please sign in to comment.