diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a704aa..efd9ef1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] - django-version: ['4.2', '5.0', '5.1'] + django-version: ['4.2', '5.0', '5.1', '5.2'] include: # Tox configuration for QA environment - python-version: '3.13' @@ -29,6 +29,8 @@ jobs: django-version: '5.0' - python-version: '3.9' django-version: '5.1' + - python-version: '3.9' + django-version: '5.2' steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index ccfe8b6..a65931e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,6 +13,7 @@ envlist = py{39,310,311,312}-dj42 py{310,311,312}-dj50 py{310,311,312,313}-dj51 + py{310,311,312,313}-dj52 py311-djmain py311-djqa @@ -29,6 +30,7 @@ DJANGO = 4.2: dj42 5.0: dj50 5.1: dj51 + 5.2: dj52 main: djmain qa: djqa @@ -39,6 +41,7 @@ deps = dj42: django>=4.1,<4.2 dj50: django>=5.0,<5.1 dj51: django>=5.1,<5.2 + dj52: django>=5.2,<6 djmain: https://github.com/django/django/archive/main.tar.gz usedevelop = true commands = pytest diff --git a/setup.py b/setup.py index 903f953..9981c25 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ setup( "Framework :: Django :: 4.2", "Framework :: Django :: 5.0", "Framework :: Django :: 5.1", + "Framework :: Django :: 5.2", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License",