Skip to content

Commit

Permalink
Drop unsupported django 4.0, 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
denisSurkov authored and WhyNotHugo committed Jan 21, 2024
1 parent eb315b2 commit dfa4e62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
max-parallel: 5
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
django-version: ['3.2', '4.0', '4.1', '4.2', 'main']
django-version: ['3.2', '4.2', 'main']
include:
- python-version: '3.7'
django-version: '3.2'
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ language using Transifex_.
Also have a look at the bundled example templates and views to see how you
can integrate the application into your project.

Compatible with Django 3.2 and 4.0 on Python 3.7 to 3.11.
Compatible with Django 3.2 and 4.2 on Python 3.7 to 3.11.
Documentation is available at `readthedocs.org`_.


Expand Down
7 changes: 1 addition & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ minversion = 1.8
envlist =
; https://docs.djangoproject.com/en/4.2/faq/install/#what-python-version-can-i-use-with-django
py{37}-dj32
py{38,39,310}-dj{32,40,41}
py{311}-dj41
py{38,39,310}-dj32
py{311,312}-dj{42,main}

[gh-actions]
Expand All @@ -20,8 +19,6 @@ python =
[gh-actions:env]
DJANGO =
3.2: dj32
4.0: dj40
4.1: dj41
4.2: dj42
main: djmain

Expand All @@ -34,8 +31,6 @@ commands =
deps =
coverage
dj32: Django>=3.2,<4.0
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<4.3
djmain: https://github.com/django/django/archive/main.tar.gz
geoip2
Expand Down

2 comments on commit dfa4e62

@al-beton
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that https://pypi.org/project/django-user-sessions/2.0.0/ This page incorrectly lists this as compatible/incompatible with Django 4.0/4.2, so this needs to be maintained by someone. Also, the same issue here: https://django-user-sessions.readthedocs.io/en/stable/release-notes.html#id1 @Bouke @BoukeHaarsma. Just a friendly heads up! :)

@WhyNotHugo
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@al-beton This change was not included in 2.0.0.

Please sign in to comment.