as of Python3 (released 2008), the sorted() function no longer has a cmp keyword (see here)
however, in current master it is still used:
|
packages = sorted(packages, key=lambda x: self.parse_package_ref(x)[2], reverse=True, cmp=apt_pkg.version_compare) |
consequently, the publishing process fail on Python3 systems (and with Python2 being dead dead dead, this means that publishing is broken in general)