Skip to content

Commit

Permalink
Don't use aioapns 2.1
Browse files Browse the repository at this point in the history
Fixes #293.

aioapns 2.1 made a breaking change: one can no longer pass an event loop directly to APNs.__init__. We could change our code to fix it, but (regrettably) I think it's quicker to avoid using that version. See also #293 (comment)
  • Loading branch information
David Robertson authored Jan 27, 2022
1 parent 80f1d48 commit 14038e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from setuptools import find_packages, setup

INSTALL_REQUIRES = [
"aioapns>=1.10",
"aioapns>=1.10,<2.1",
"attrs>=19.2.0",
"cryptography>=2.6.1",
"idna>=2.8",
Expand Down

0 comments on commit 14038e7

Please sign in to comment.