blob: b2e1b9cd82654b35a9b198fc1f6544c76aaa10d1 [file] [log] [blame]
Andrew Geissler78b72792022-06-14 06:47:25 -05001From 7a4dde83a9584adb42c7f810d882b1fbf5767e2c Mon Sep 17 00:00:00 2001
2From: Bartosz Golaszewski <brgl@bgdev.pl>
3Date: Tue, 24 May 2022 21:43:35 +0200
4Subject: [PATCH] setup: use setuptools instead of distutils
5
6The latter is deprecated, use setuptools instead.
7
8Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
9---
Patrick Williams520786c2023-06-25 16:20:36 -050010Upstream-Status: Pending
11
Andrew Geissler78b72792022-06-14 06:47:25 -050012 setup.py | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/setup.py b/setup.py
16index 3fa3343..4900b8b 100644
17--- a/setup.py
18+++ b/setup.py
19@@ -3,7 +3,7 @@
20 import errno
21 import subprocess
22
23-from distutils.core import setup, Extension
24+from setuptools import setup, Extension
25
26 libudev_so = "libudev.so.1"
27
28--
292.34.1
30