Package: python3-mox
Version: 0.7.8-3
Severity: serious
Control: affects -1 python-mox

? python3
Python 3.7.6 (default, Dec 19 2019, 09:25:23)
[GCC 9.2.1 20191130] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import mox
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/tmp/python-mox-0.7.8/mox.py", line 72, in <module>
    import six
ModuleNotFoundError: No module named 'six'
>>>
$ python
Python 2.7.17 (default, Oct 19 2019, 23:36:22)
[GCC 9.2.1 20191008] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import mox
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "mox.py", line 72, in <module>
    import six
ImportError: No module named six
>>>
$


Adding "python-six, python3-six" to the test dependencies fixed the tests,
but didn't address the actual problem that the packages need these
dependencies (which caused the test failure).

Reply via email to