Closed jwodder closed 11 months ago
This library makes use of collections.abc.ByteString in several locations, but this type has been deprecated (and produces a warning) in Python 3.12 and is slated for removal in Python 3.14. See the link for advice on how to replace it.
collections.abc.ByteString
Thanks for the heads up!
The latest release uses bytes instead.
bytes
This library makes use of
collections.abc.ByteString
in several locations, but this type has been deprecated (and produces a warning) in Python 3.12 and is slated for removal in Python 3.14. See the link for advice on how to replace it.