Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 1 | From f5ab30abd37ee884fb3ccaad0a8d21108ca2c812 Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Mon, 28 Feb 2022 21:37:19 -0800 |
| 4 | Subject: [PATCH] setup.py: Port to use setuptools |
| 5 | |
| 6 | Needed to get it going with wheel, distutils is deprecated for long |
| 7 | |
| 8 | Upstream-Status: Pending |
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 10 | --- |
| 11 | Linux/python/setup.py | 2 +- |
| 12 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 13 | |
| 14 | diff --git a/Linux/python/setup.py b/Linux/python/setup.py |
| 15 | index 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 | -- |
| 28 | 2.35.1 |
| 29 | |