Skip to content

Commit

Permalink
Added support for Django 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ataylor32 committed Apr 14, 2023
1 parent fb97e10 commit dd7a880
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

services:
postgres:
image: postgres:11
image: postgres:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand Down Expand Up @@ -100,6 +100,15 @@ jobs:
python-version: "3.10"
- django-version: "4.1"
python-version: "3.11"
# Django 4.2
- django-version: "4.2"
python-version: "3.8"
- django-version: "4.2"
python-version: "3.9"
- django-version: "4.2"
python-version: "3.10"
- django-version: "4.2"
python-version: "3.11"

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ recent actions. This app provides a ``ModelAdmin`` for
``django.contrib.admin``'s ``LogEntry`` model (with everything except the list
disabled), allowing you to see every action taken by every user. The list can
be filtered, searched, and sorted, as you would expect of a ``ModelAdmin``.
This app is for Django 1.11 through 4.1. It may work on older versions of
This app is for Django 1.11 through 4.2. It may work on older versions of
Django, but it has not been tested.

------------
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ envlist =
{py36,py37,py38,py39}-django{30,31}
{py36,py37,py38,py39,py310}-django32
{py38,py39,py310}-django40
{py38,py39,py310,py311}-django41
{py38,py39,py310,py311}-django{41,42}

[testenv]
passenv = DATABASE_URL
Expand All @@ -23,6 +23,7 @@ deps =
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
dj-database-url==0.5.0
py{27,35,36,37,38,39,310}: psycopg2==2.8.5
py311: psycopg2==2.9.6
Expand All @@ -48,3 +49,4 @@ DJANGO =
3.2: django32
4.0: django40
4.1: django41
4.2: django42

0 comments on commit dd7a880

Please sign in to comment.