From 5349a737ad3f041fc148bf93b58a47138bbc2217 Mon Sep 17 00:00:00 2001 From: David Elizalde Date: Wed, 22 Nov 2023 10:57:17 -0600 Subject: [PATCH] Use setuptools in place of distutils --- samples/vm_wrapper/setupPyBOINC.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/vm_wrapper/setupPyBOINC.py b/samples/vm_wrapper/setupPyBOINC.py index 9b2552fc069..1895a9a2541 100644 --- a/samples/vm_wrapper/setupPyBOINC.py +++ b/samples/vm_wrapper/setupPyBOINC.py @@ -1,4 +1,4 @@ -from distutils.core import setup, Extension +from setuptools import setup, Extension # May need to adjust these to suit your system, but a standard installation of the BOINC client from source will put things in these places pyboinc = Extension('boinc', runtime_library_dirs=['/usr/local/lib', '../../lib', '../../api'],