From c435a68a323a1b897ac0861ef76c82028d239511 Mon Sep 17 00:00:00 2001 From: "Henri J. Norden" <55378880+Henri-J-Norden@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:46:20 +0200 Subject: [PATCH] Indicate Django 5.0 support --- .github/workflows/ci.yml | 3 +++ README.rst | 6 +++--- setup.py | 3 ++- tox.ini | 2 ++ 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5034941..2555ac1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,9 @@ jobs: - python-version: "3.10" django-version: Django==4.2 + - python-version: "3.10" + django-version: Django==5.0 + steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/README.rst b/README.rst index eacaeae..b960113 100644 --- a/README.rst +++ b/README.rst @@ -14,9 +14,9 @@ Welcome to django-more-admin-filters :target: https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-blue :alt: python: 3.6, 3.7, 3.8, 3.9, 3.10 -.. image:: https://img.shields.io/badge/django-2.2%20%7C%203.0%20%7C%203.1%20%7C%203.2%20%7C%204.0%20%7C%204.1%20%7C%204.2-orange - :target: https://img.shields.io/badge/django-2.2%20%7C%203.0%20%7C%203.1%20%7C%203.2%20%7C%204.0%20%7C%204.1%20%7C%204.2-orange - :alt: django: 2.2, 3.0, 3.1, 3.2, 4.0, 4.1, 4.2 +.. image:: https://img.shields.io/badge/django-2.2%20%7C%203.0%20%7C%203.1%20%7C%203.2%20%7C%204.0%20%7C%204.1%20%7C%204.2%20%7C%205.0-orange + :target: https://img.shields.io/badge/django-2.2%20%7C%203.0%20%7C%203.1%20%7C%203.2%20%7C%204.0%20%7C%204.1%20%7C%204.2%20%7C%205.0-orange + :alt: django: 2.2, 3.0, 3.1, 3.2, 4.0, 4.1, 4.2, 5.0 Description diff --git a/setup.py b/setup.py index 2f7e8d4..245c397 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setup( packages=find_namespace_packages(exclude=["tests"]), include_package_data=True, install_requires=[ - "Django>=2.2,<5.0", + "Django>=2.2,<6.0", ], classifiers=[ dev_status, @@ -54,6 +54,7 @@ setup( "Framework :: Django :: 4.0", "Framework :: Django :: 4.1", "Framework :: Django :: 4.2", + "Framework :: Django :: 5.0", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", diff --git a/tox.ini b/tox.ini index 404fc4a..595a34a 100644 --- a/tox.ini +++ b/tox.ini @@ -12,6 +12,7 @@ envlist = {py39,py10}-django40 {py39,py10}-django41 {py39,py10}-django42 + {py10}-django50 skip_missing_interpreters = true @@ -24,6 +25,7 @@ deps = django40: Django>=4.0,<4.1 django41: Django>=4.1,<4.2 django42: Django>=4.2,<5.0 + django50: Django>=5.0,<5.1 selenium<=4.16.0 commands = {envpython} tests/manage.py test testapp {posargs}