blob: 77eca99876d573305116a1501ef38cc5a79abb6e [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001From f5ab30abd37ee884fb3ccaad0a8d21108ca2c812 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 28 Feb 2022 21:37:19 -0800
4Subject: [PATCH] setup.py: Port to use setuptools
5
6Needed to get it going with wheel, distutils is deprecated for long
7
8Upstream-Status: Pending
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 Linux/python/setup.py | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/Linux/python/setup.py b/Linux/python/setup.py
15index e429e6f..da96843 100644
16--- a/Linux/python/setup.py
17+++ b/Linux/python/setup.py
18@@ -22,7 +22,7 @@
19 #// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 #// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22-from distutils.core import setup, Extension
23+from setuptools import setup, Extension
24 import os.path
25
26 RTIMU_sources = [
27--
282.35.1
29