Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Django 4.2 the minimum supported version. #2086

Merged
merged 1 commit into from
Apr 3, 2024
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
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Dependencies
------------

All Channels projects currently support Python 3.8 and up. ``channels`` is
compatible with Django 3.2, 4.0, 4.1, 4.2 and 5.0.
compatible with Django 4.2 and 5.0.


Contributing
Expand Down
9 changes: 2 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ classifiers =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Framework :: Django
Framework :: Django :: 3
Framework :: Django :: 3.2
Framework :: Django :: 4
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Topic :: Internet :: WWW/HTTP
Expand All @@ -35,8 +30,8 @@ classifiers =
packages = find:
include_package_data = True
install_requires =
Django>=3.2
asgiref>=3.5.0,<4
Django>=4.2
asgiref>=3.6.0,<4
python_requires = >=3.8

[options.extras_require]
Expand Down
6 changes: 0 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
[tox]
envlist =
py{38,39,310}-dj32
py{38,39,310}-dj40
py{38,39,310,311}-dj41
py{38,39,310,311}-dj42
py{310,311,312}-dj50
py{310,311,312}-djmain
Expand All @@ -13,9 +10,6 @@ extras = tests, daphne
commands =
pytest -v {posargs}
deps =
dj32: Django>=3.2.9,<4.0
dj40: Django>=4.0,<4.1
dj41: Django>=4.1.2,<4.2
dj42: Django>=4.2,<5.0
dj50: Django>=5.0rc1,<5.1
djmain: https://github.com/django/django/archive/main.tar.gz
Expand Down