forked from django/channels
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Django 3.0; drop support for Django < 2.2 (django#1389)
* Add support for Django 3.0; drop support for Django < 2.2 * Do not call database operations from async code directly This prevents `SynchronousOnlyOperation` exceptions that were introduced in Django 3.0. See https://docs.djangoproject.com/en/3.0/releases/3.0/#asgi-support for further details.
- Loading branch information
1 parent
7b0cc78
commit dd30456
Showing
9 changed files
with
16 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,13 @@ | |
url='http://github.com/django/channels', | ||
author='Django Software Foundation', | ||
author_email='[email protected]', | ||
description="Brings async, event-driven capabilities to Django. Django 1.11 and up only.", | ||
description="Brings async, event-driven capabilities to Django. Django 2.2 and up only.", | ||
license='BSD', | ||
packages=find_packages(exclude=['tests']), | ||
include_package_data=True, | ||
python_requires='>=3.5', | ||
install_requires=[ | ||
'Django>=1.11', | ||
'Django>=2.2', | ||
'asgiref~=3.2', | ||
'daphne~=2.3', | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters