higlass / clodius

Clodius is a tool for breaking up large data sets into smaller tiles that can subsequently be displayed using an appropriate viewer.
MIT License
39 stars 21 forks source link

chore: favor 'items()' over 'iteritems()' #146

Closed manzt closed 1 year ago

manzt commented 1 year ago

Description

What was changed in this pull request?

Replaces instances of dict.iteritems() with dict.items().

Why is it necessary?

Use of iteritems() raises a deprecation notice in Python 3.10 and above.

Fixes #___

Checklist