Skip to content

Commit

Permalink
Django 3.2 Support (#96)
Browse files Browse the repository at this point in the history
- added Django 3.2 to tox
- Removed the purely documentational `providing_args` argument for Signal which was deprecated in 3.1 and will be removed in 4.0
  • Loading branch information
josephabrahams authored Oct 18, 2021
1 parent 18ca20b commit 59351f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sendgrid_backend/signals.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import django.dispatch

sendgrid_email_sent = django.dispatch.Signal(providing_args=["message", "fail_flag"])
sendgrid_email_sent = django.dispatch.Signal()
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38,39}-django{18,110,111,21,22,3,31}-sendgrid{5,6}
py{36,37,38,39}-django{18,110,111,21,22,3,31,32}-sendgrid{5,6}

[gh-actions]
python =
Expand All @@ -18,6 +18,7 @@ deps =
django22: Django>=2.2,<2.3
django3: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<4
sendgrid5: sendgrid>=5,<6
sendgrid6: sendgrid>=6,<7
-rdev-requirements.txt
Expand Down

0 comments on commit 59351f1

Please sign in to comment.