Skip to content

Commit

Permalink
Add Django 4.2 support (remove Django 4.0 support)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpg committed May 4, 2023
1 parent 9052b23 commit 3b1be72
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changelog
(Unreleased)
~~~~~~~~~~~~
* Remove Python 3.6 support (no code changes occurred, but we no longer test this release).
* Remove Django 4.1 support (no code changes occurred, but we no longer test this release).
* Add Django 4.2 support.

3.1.0 (2022-11-08)
~~~~~~~~~~~~~~~~~~
Expand Down
1 change: 1 addition & 0 deletions taggit/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class ExtraJoinRestriction:
"""

contains_aggregate = False
contains_over_clause = False

def __init__(self, alias, col, content_types):
self.alias = alias
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ envlist =
flake8
isort
py{37,38,39,310}-dj32
py{38,39,310}-dj40
py{38,39,310,311}-dj{41,main}
py{38,39,310,311}-dj{41,42,main}
docs

[gh-actions]
Expand All @@ -20,8 +19,8 @@ python =
[testenv]
deps =
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
djmain: https://github.com/django/django/archive/main.tar.gz
coverage
djangorestframework
Expand Down

0 comments on commit 3b1be72

Please sign in to comment.