Skip to content

Commit

Permalink
Merge pull request #14 from StephanJarisch/SIANXKE-349
Browse files Browse the repository at this point in the history
added: django 5.0 support, removed: django 3.2, 4.1 support
  • Loading branch information
nezhar authored Jun 13, 2024
2 parents 36acffb + cd10cf2 commit d09be5e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +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
- 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
- Register built-in up-checks via the `monitor_up_check` signal

### Removed
- Support for Python 3.7
- Support for Django 4.0
- Support for Django 3.2, 4.0, 4.1

## [1.5.0]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d09be5e

Please sign in to comment.