diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c90fe57..7e970271 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,12 @@ jobs: matrix: os: [ubuntu-20.04] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] - django-version: ["3.2", "4.1", "main"] + django-version: ["3.2", "4.1", "4.2", "main"] exclude: - python-version: "3.7" django-version: "4.1" + - python-version: "3.7" + django-version: "4.2" - python-version: "3.7" django-version: "main" - python-version: "3.8" diff --git a/setup.cfg b/setup.cfg index 82db008d..a3726178 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,6 +13,7 @@ classifiers = Framework :: Django Framework :: Django :: 3.2 Framework :: Django :: 4.1 + Framework :: Django :: 4.2 Intended Audience :: Developers License :: OSI Approved :: BSD License Operating System :: OS Independent diff --git a/tox.ini b/tox.ini index c4dcd9ff..3531648e 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ minversion = 1.9 envlist = py{3.7,3.8,3.9,3.10}-django3.2 py{3.8,3.9,3.10,3.11}-django4.1 + py{3.8,3.9,3.10,3.11}-django4.2 py{3.10,3.11,3.12}-djangomain flake8 @@ -15,6 +16,7 @@ commands = pytest --cov=storages tests/ {posargs} deps = django3.2: django~=3.2.9 django4.1: django~=4.1.0 + django4.2: django~=4.2.0 djangomain: https://github.com/django/django/archive/main.tar.gz cryptography pytest