rndusr / torf

Python module to create, parse and edit torrent files and magnet links
GNU General Public License v3.0
179 stars 18 forks source link

`collections.abc.ByteString` is deprecated in Python 3.12 and will be removed in Python 3.14 #34

Closed jwodder closed 11 months ago

jwodder commented 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.

rndusr commented 11 months ago

Thanks for the heads up!

The latest release uses bytes instead.