Source: ply Version: 3.11-10 Severity: normal Dear Maintainer,
ply is a key package and is also turning python3-six in a key package. https://release.debian.org/key-packages.html Please at least tag python3-six as '<!nocheck>'; but maybe it's time to get rid of it altogether. The one-line patch would look like this: -from six.moves.queue import Empty +from queue import Empty Then python3-six can be dropped from debian/control & debian/tests/control Greetings Alexandre $ grep six -r debian/tests/control:Depends: @, python3-all, python3-six debian/control: python3-six, debian/changelog: + add build-deps on python-six, python3-six; needed by testcpp.py. test/testcpp.py:from six.moves.queue import Empty @quieter:/tmp/ply-3.11$ python3 Python 3.14.6 (main, Jun 10 2026, 18:54:31) [GCC 15.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from queue import Empty >>>

