Source: hiera-py Version: 0.0.1+20190629-2 Severity: normal Dear Maintainer,
python3-mock is an obsolete package. "mock" has been merge in the Python Standard Library a long time ago, around the times of Python3.7 Please consider this trivial pseudo-patch that would help remove the few remaining usage of this library from Debian. There is no defined timeline yet that says wether this should happen before of after Forky is released. Greetings Alexandre diff --git a/debian/control b/debian/control index cc11ef3..3b4888a 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,6 @@ Build-Depends: debhelper-compat (= 13), dh-python, python3-all, - python3-mock, python3-setuptools, python3-sphinx <!nodoc>, python3-sphinx-rtd-theme, diff --git a/test/test_client.py b/test/test_client.py index 319c642..cf13e48 100755 --- a/test/test_client.py +++ b/test/test_client.py @@ -5,7 +5,7 @@ from __future__ import print_function, unicode_literals -import mock +from unittest import mock import subprocess import unittest import uuid

