From cd10cf2e74b015a0d6c785faa14a55a090d50489 Mon Sep 17 00:00:00 2001 From: Stephan Jarisch Date: Thu, 13 Jun 2024 09:29:51 +0200 Subject: [PATCH] added: django 5.0 support, removed: django 3.2, 4.1 support --- .github/workflows/test.yml | 7 ++++++- CHANGELOG.md | 6 +++--- README.md | 2 +- requirements.txt | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba58e8b..a419c87 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,12 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] - django-version: ['3.2', '4.1', '4.2'] + django-version: ['4.2', '5.0'] + exclude: + - python-version: '3.8' + django-version: '5.0' + - python-version: '3.9' + django-version: '5.0' steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index dd71256..f064a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.6.0 - Unreleased] ### Added -- Support for Python 3.11 and Python 3.12 -- Support for Django 4.2 +- Support for Python 3.11 and 3.12 +- Support for Django 4.2 and 5.0 ### Changed - Distinguish between errors and warnings on up-check @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Support for Python 3.7 -- Support for Django 4.0 +- Support for Django 3.2, 4.0, 4.1 ## [1.5.0] diff --git a/README.md b/README.md index 27949bb..c8b42f3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ If your project uses an older version of Django, you can choose an older version | This Project | Python Version | Django Version | |--------------|----------------|----------------| -| 1.6.* | 3.8 - 3.12 | 3.2, 4.1, 4.2 | +| 1.6.* | 3.8 - 3.12 | 4.2, 5.0 | | 1.5.* | 3.7 - 3.10 | 3.2, 4.0, 4.1 | | 1.4.* | 3.7 - 3.10 | 3.2, 4.0 | | 1.3.* | 3.5 - 3.9 | 2.2, 3.1, 3.2 | diff --git a/requirements.txt b/requirements.txt index 716b9d7..1dd628c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ -e . # Development dependencies -django>=3.2.0 +django>=4.2.0, <5.1 flake8>=5.0 codecov>=2.1 setuptools>=42