Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 10 additions & 14 deletions .github/workflows/python-version-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,19 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
django-version: ['3.2', '4.0', '4.1', '4.2', '5.0']
python-version: ['3.11', '3.12', '3.13', '3.14']
django-version: ['4.2', '5.0', '5.1', '5.2']
exclude:
- python-version: '3.8'
- python-version: '3.13'
django-version: '4.2'
- python-version: '3.13'
django-version: '5.0'
- python-version: '3.9'
- python-version: '3.14'
django-version: '4.2'
- python-version: '3.14'
django-version: '5.0'
- python-version: '3.11'
django-version: '3.2'
- python-version: '3.11'
django-version: '4.0'
- python-version: '3.12'
django-version: '3.2'
- python-version: '3.12'
django-version: '4.0'
- python-version: '3.12'
django-version: '4.1'
- python-version: '3.14'
django-version: '5.1'
services:
postgres:
image: postgres:12
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased
- Add support for Python 3.14
- Add support for Django 5.2
- Drop support for Python versions below 3.11
- Drop support for Django versions below 4.2

## 4.2.0
- Migrate to Poetry for building and publishing

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## About

A Django field that enables convenient soft-deletion. For Python 3.8+ and Django 3.2+
A Django field that enables convenient soft-deletion. For Python 3.11+ and Django 4.2+

## Installation

Expand Down
Loading