From ffd288561ebc9a6d4e97318aa1a074d000df3090 Mon Sep 17 00:00:00 2001 From: "Alexandre J. Raymond" Date: Thu, 29 May 2025 11:39:44 -0400 Subject: [PATCH] setup.py: use setup() from setuptools instead of deprecated distutils.core See https://peps.python.org/pep-0632/ This is currently done as a patch in the Debian package. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1117eeda..c0884fe0 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup from setuptools import find_packages setup(name='chirp',