diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e2bb46a..1bff36e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,6 +17,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 88ae36e..6dfcacc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,7 @@ Change log .. _Next version: https://github.com/feinheit/django-email-hosts/compare/0.2...main -- Added Django 4.1, 4.2, Python 3.11. +- Added Django 4.1, 4.2, 5.0, Python 3.11, 3.12. - Fixed a typo in the README. - Modernized the package. - Added a command to send test mails using all configured email backends. diff --git a/pyproject.toml b/pyproject.toml index 3752634..216fcde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] dynamic = [ "version", diff --git a/tox.ini b/tox.ini index d01fea1..0731cbc 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = py{39,310}-dj{32,41,42} - py{310,311}-dj{32,41,42,main} + py{310,311,312}-dj{32,41,42,50,main} docs [testenv] @@ -14,6 +14,7 @@ deps = dj32: Django>=3.2,<4.0 dj41: Django>=4.1,<4.2 dj42: Django>=4.2,<5.0 + dj50: Django>=5.0,<5.1 djmain: https://github.com/django/django/archive/main.tar.gz [testenv:docs]