Description: Remove redundant code snippet that uses a deprecated lib.
 This patch removes the usage of distutils in the setup.py since distuitils has
 been removed in Python3.12. It also removes the distutils related code.
 This code checks if the setuptools version is greater than 30, which is not
 necessary because in debian unstable, the setuptools version is 75.
Author: Thais Reboucas de Araujo <thaysreb@gmail.com>
Last-Update: 2025-03-31

Index: python-echo/setup.py
===================================================================
--- python-echo.orig/setup.py
+++ python-echo/setup.py
@@ -1,15 +1,5 @@
 #!/usr/bin/env python
 
-import sys
-from distutils.version import LooseVersion
-
-try:
-    import setuptools
-    assert LooseVersion(setuptools.__version__) >= LooseVersion('30.3')
-except (ImportError, AssertionError):
-    sys.stderr.write("ERROR: setuptools 30.3 or later is required\n")
-    sys.exit(1)
-
 from setuptools import setup
 
 setup(use_scm_version=True)
