From 05658dc1bc61ae5a9b7310277998e7e0dcea3165 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Tue, 24 Oct 2023 09:55:12 +0200 Subject: [PATCH] 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 --- bindings/python/tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) -- 2.30.2