* update py-lockable (15)
This introduce **breaking change**:
`lockable` fixture `auto_lock()` contextmanager yields `Allocation` instance instead of dictionary.
Example:
Originally:
def test_example2(lockable):
""" Simple test """
with lockable.auto_lock({}) as resource_info:
print(f'Testing with resource2: {resource_info}')
Now should be:
def test_example2(lockable):
""" Simple test """
with lockable.auto_lock({}) as allocation:
print(f'Testing with resource2: {allocation.resource_info}')