diff options
author | Mathieu Pillard <diox@users.noreply.github.com> | 2022-08-03 18:02:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 18:02:37 +0200 |
commit | aef39a8c0c7a63d096a7ce07dcfd66ff458c93fc (patch) | |
tree | be9d0af84e6568e2c2623879be20e06069eebddf | |
parent | 9251aa109f3b8159408c75d61d7fbc2d307089c2 (diff) | |
download | django-compressor-aef39a8c0c7a63d096a7ce07dcfd66ff458c93fc.tar.gz |
Test Django 4.1.x in CI separately from 4.0.x (#1134)
-rw-r--r-- | .github/workflows/ci.yml | 7 | ||||
-rw-r--r-- | docs/changelog.txt | 5 | ||||
-rw-r--r-- | tox.ini | 6 |
3 files changed, 16 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55e28c0..d170520 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,6 +49,13 @@ jobs: - python: "3.10" toxenv: py310-4.0.X + - python: 3.8 + toxenv: py38-4.1.X + - python: 3.9 + toxenv: py39-4.1.X + - python: "3.10" + toxenv: py310-4.1.X + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/docs/changelog.txt b/docs/changelog.txt index 420906f..470fc4d 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -4,6 +4,11 @@ Changelog Unreleased ---------- +v4.1 (2022-08-03) +----------------- + +- Add Django 4.1 compatibility + - New setting ``COMPRESS_OFFLINE_MANIFEST_STORAGE`` to customize the offline manifest's file storage (#1112) With this change the function ``compressor.cache.get_offline_manifest_filename()`` has been removed. @@ -3,7 +3,8 @@ envlist = {py36,py37,py38,py39}-2.2.X {py36,py37,py38,py39}-3.1.X {py36,py37,py38,py39,py310}-3.2.X - {py38,py39,,py310}-4.0.X + {py38,py39,py310}-4.0.X + {py38,py39,py310}-4.1.X [testenv] basepython = py36: python3.6 @@ -22,5 +23,6 @@ deps = 2.2.X: Django>=2.2,<2.3 3.1.X: Django>=3.1,<3.2 3.2.X: Django>=3.2,<4.0 - 4.0.X: Django>=4.0a1,<5.0 + 4.0.X: Django>=4.0,<4.1 + 4.1.X: Django>=4.1,<4.2 -r{toxinidir}/requirements/tests.txt |