Source: simplebayes Version: 1.5.7-2 Severity: normal Dear Maintainer,
python3-mock is an obsolete standalone library. It's functionality has been integrated in the Python Standard Library a long time ago. Please consider the following patch: Greetings Alexandre --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Section: python Priority: optional Maintainer: Thomas Perret <[email protected]> -Build-Depends: debhelper-compat (= 13), dh-python, python3-all, python3-setuptools, python3-mock, python3-sphinx, python3-sphinx-rtd-theme +Build-Depends: debhelper-compat (= 13), dh-python, python3-all, python3-setuptools, python3-sphinx, python3-sphinx-rtd-theme Standards-Version: 4.5.1 Homepage: https://github.com/hickeroar/simplebayes Vcs-Browser: https://salsa.debian.org/openpaperwork-team/simplebayes --- a/tests/__init__.py +++ b/tests/__init__.py @@ -25,7 +25,7 @@ from simplebayes import SimpleBayes from simplebayes.categories import BayesCategories import unittest -import mock +from unittest import mock import pickle import os try:

