You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pyapns2 relies on hyper, hyperframe and h2. All of them currently not supporting python3.10. hyper is even an archived project.
Are there any plans to further maintain those packages?
Tobi
The text was updated successfully, but these errors were encountered:
if version_info.major >= 3 and version_info.minor >= 10:
"""
**************
* WORKAROUND *
**************
The apns2 package is throwing errors because some aliases in collections were removed in 3.10. Specifically, the
error is coming from a dependency of apns2 named hyper.
"""
import collections
from collections import abc
collections.Iterable = abc.Iterable
collections.Mapping = abc.Mapping
collections.MutableSet = abc.MutableSet
collections.MutableMapping = abc.MutableMapping
Pyapns2 relies on hyper, hyperframe and h2. All of them currently not supporting python3.10. hyper is even an archived project.
Are there any plans to further maintain those packages?
Tobi
The text was updated successfully, but these errors were encountered: