Skip to content

Commit

Permalink
Confirm and test support for Django 4.2 (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
LincolnPuzey committed Apr 12, 2023
1 parent b052dfe commit 85f0fbd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -16,13 +16,15 @@ jobs:
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
django: ['2.0', '2.1', '2.2', '3.0', '3.1', '3.2', '4.0', '4.1']
django: ['2.0', '2.1', '2.2', '3.0', '3.1', '3.2', '4.0', '4.1', '4.2']
database: ['postgres', 'sqlite']
exclude:
- python: '3.7'
django: '4.0'
- python: '3.7'
django: '4.1'
- python: '3.7'
django: '4.2'
- python: '3.8'
django: '2.0'
- python: '3.8'
Expand Down Expand Up @@ -59,7 +61,7 @@ jobs:
services:
# as far as I can see, no way to make this conditional on the matrix database
postgres:
image: postgres:11
image: postgres:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand Down
2 changes: 2 additions & 0 deletions ChangeLog.rst
Expand Up @@ -6,6 +6,8 @@ ChangeLog
unreleased
----------

*New:*
- Confirm support for Django 4.2


.. _v1.9.1:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -35,7 +35,7 @@ This package is compatible and tested with the following Python & Django version
+------------------------+-----------------------------------+
| 4.0 | 3.8, 3.9, 3.10 |
+------------------------+-----------------------------------+
| 4.1 | 3.8, 3.9, 3.10, 3.11 |
| 4.1, 4.2 | 3.8, 3.9, 3.10, 3.11 |
+------------------------+-----------------------------------+


Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -31,6 +31,7 @@ classifiers =
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
license = BSD
license_files = LICENSE
description = Tracking dirty fields on a Django model instance.
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Expand Up @@ -6,7 +6,7 @@ envlist =
py{37,38,39}-django{22,30,31}-{postgresql,sqlite}
py{37,38,39,310}-django{32}-{postgresql,sqlite}
py{38,39,310}-django{40}-{postgresql,sqlite}
py{38,39,310,311}-django{41}-{postgresql,sqlite}
py{38,39,310,311}-django{41,42}-{postgresql,sqlite}
py{37,38,39,310,311}-flake8

[testenv]
Expand All @@ -24,6 +24,7 @@ deps =
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
-rtests-requirements.txt
commands =
python --version
Expand Down

0 comments on commit 85f0fbd

Please sign in to comment.