From: Bartosz Golaszewski Date: Tue, 24 Oct 2023 07:55:12 +0000 (+0200) Subject: bindings: python: fix the distutils import X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=05658dc1bc61ae5a9b7310277998e7e0dcea3165;p=qemu-gpiodev%2Flibgpiod.git bindings: python: fix the distutils import The presence of _distutils in setuptools is an implementation detail. If we want anything from the distutils package, we should import it directly. Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/python/tests/__init__.py b/bindings/python/tests/__init__.py index ecb96af..02f4e8d 100644 --- a/bindings/python/tests/__init__.py +++ b/bindings/python/tests/__init__.py @@ -4,7 +4,7 @@ import os import unittest -from setuptools._distutils.version import LooseVersion +from distutils.version import LooseVersion required_kernel_version = LooseVersion("5.19.0") current_version = LooseVersion(os.uname().release.split("-")[0])