diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 118b593..ba58e8b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,13 +6,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] - django-version: ['3.2', '4.0', '4.1'] - exclude: - - python-version: '3.7' - django-version: '4.0' - - python-version: '3.7' - django-version: '4.1' + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + django-version: ['3.2', '4.1', '4.2'] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6585c6c..dd71256 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,14 +7,16 @@ 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 ### Changed - Distinguish between errors and warnings on up-check - Register built-in up-checks via the `monitor_up_check` signal ### Removed -- +- Support for Python 3.7 +- Support for Django 4.0 ## [1.5.0] diff --git a/README.md b/README.md index 26721c0..27949bb 100644 --- a/README.md +++ b/README.md @@ -16,6 +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.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 |