Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 1 | From 7a4dde83a9584adb42c7f810d882b1fbf5767e2c Mon Sep 17 00:00:00 2001 |
| 2 | From: Bartosz Golaszewski <brgl@bgdev.pl> |
| 3 | Date: Tue, 24 May 2022 21:43:35 +0200 |
| 4 | Subject: [PATCH] setup: use setuptools instead of distutils |
| 5 | |
| 6 | The latter is deprecated, use setuptools instead. |
| 7 | |
| 8 | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> |
| 9 | --- |
Patrick Williams | 520786c | 2023-06-25 16:20:36 -0500 | [diff] [blame] | 10 | Upstream-Status: Pending |
| 11 | |
Andrew Geissler | 78b7279 | 2022-06-14 06:47:25 -0500 | [diff] [blame] | 12 | setup.py | 2 +- |
| 13 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 14 | |
| 15 | diff --git a/setup.py b/setup.py |
| 16 | index 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 | -- |
| 29 | 2.34.1 |
| 30 | |