ValvePython / vdf

📜 Package for working with Valve's text and binary KeyValue format
https://pypi.org/project/vdf/
MIT License
165 stars 30 forks source link

Fix collection deprecation warning #19

Closed bubylou closed 3 years ago

bubylou commented 5 years ago

In python 3.3 the Collections Abstract Base Classes were moved to the collections.abc but for backwards compatibility were still available from collections. This compatibility will be removed after in python 3.8.

Signed-off-by: Nicholas Malcolm bubylou7@gmail.com

Rosuav commented 3 years ago

Note that this fix is more than just removing a warning; the latest Pythons no longer have those available in collections at all. A release containing this patch will allow protontricks to work without fiddling around with forcing the version that gets installed.