realitix / vulkan

The ultimate Python binding for Vulkan API
Apache License 2.0
505 stars 46 forks source link

Use Iterable from collections.abc #76

Closed craftyguy closed 2 years ago

craftyguy commented 2 years ago

Iterable was removed from the collections module in python ~3.8. It has been in collections.abc since python 3.3.

fixes: File "/home/clayton/src/valve-infra/venv/lib/python3.10/site-packages/vulkan/_vulkan.py", line 74, in _cast_ptr2 if isinstance(x, _collections.Iterable): AttributeError: module 'collections' has no attribute 'Iterable'

realitix commented 2 years ago

Thanks for your contribution !