5. Drop six from petclaw
Three petclaw modules still import the Python 2 compatibility shim:
src/petclaw/plot.py:1 — from six.moves import range
src/petclaw/fileio/petsc.py:13 — from six.moves import range
src/petclaw/fileio/hdf5.py:18,84,163 — import six, six.iteritems,
six.itervalues
Given that we are Python 3 only these are no longer needed.
5. Drop
sixfrom petclawThree petclaw modules still import the Python 2 compatibility shim:
src/petclaw/plot.py:1—from six.moves import rangesrc/petclaw/fileio/petsc.py:13—from six.moves import rangesrc/petclaw/fileio/hdf5.py:18,84,163—import six,six.iteritems,six.itervaluesGiven that we are Python 3 only these are no longer needed.