From 4e43239f1b1067ae1c244900447baf5985e554fa Mon Sep 17 00:00:00 2001 From: Carsten Schoenert Date: Sat, 12 Oct 2024 20:18:40 +0100 Subject: [PATCH] build.py: Use setuptools instead of distutils The distutils module is deprecated since Python 3.10. See also https://setuptools.pypa.io/en/latest/deprecated/distutils-legacy.html --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 128df03..20a4b0f 100644 --- a/build.py +++ b/build.py @@ -1,4 +1,4 @@ -from distutils.command.build_ext import build_ext +from setuptools.command.build_ext import build_ext from Cython.Build import cythonize