diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e6dedfc7..985520da 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,6 @@ jobs: - '3.11' - '3.12' tox-environment: - - dj32 - dj42 - dj50 include: diff --git a/pyproject.toml b/pyproject.toml index a82f1e92..5beb0a06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,6 @@ license = { text="MIT" } classifiers = [ "Development Status :: 5 - Production/Stable", "Framework :: Django", - "Framework :: Django :: 3.2", "Framework :: Django :: 4.2", "Framework :: Django :: 5.0", "Intended Audience :: Developers", @@ -33,7 +32,7 @@ classifiers = [ "Topic :: Internet :: WWW/HTTP", ] dynamic = ["version"] -dependencies = ["Django>=3.2"] +dependencies = ["Django>=4.2"] [project.optional-dependencies] phonenumbers = ["phonenumbers >= 7.0.2"] diff --git a/tests/tests.py b/tests/tests.py index 51f17e5a..dfd90594 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -293,13 +293,6 @@ def test_values_with_null(self): class PhoneNumberFieldAppTest(TestCase): - @classmethod - def setUpClass(cls): - super().setUpClass() - # Drop alias with support for Django 3.2. - if django.VERSION < (4, 2): - cls.assertQuerySetEqual = cls.assertQuerysetEqual - def test_save_field_to_database(self): """Basic Field Test""" tm = models.TestModel() diff --git a/tox.ini b/tox.ini index dec32dc5..ee0a7b4c 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,6 @@ envlist = black flake8 isort - dj32 dj42 dj50 djmain @@ -15,7 +14,6 @@ minversion = 1.9 deps = babel coverage - dj32: Django>=3.2,<4.0 dj42: Django>=4.2,<4.3 dj50: Django>=5.0b1,<5.1 djmain: https://github.com/django/django/archive/main.tar.gz