commit 34ec5097f33c9b1620714d8dd95e75901559668b
Author: jenisys <jenisys@users.noreply.github.com>
Date:   Sun Sep 12 16:07:32 2021 +0200

    FIX #955: setup: Remove attribute 'use_2to3'
    
    REASON:
    * This attribute is deprecated since setuptools >= v58.0.2 (2021-09-06).
    * 2to3 conversion should not be needed anymore.
      Currently, code should run on python2 and python3 (by using six, etc.).

--- a/setup.py
+++ b/setup.py
@@ -100,8 +100,8 @@ setup(
             "pylint",
         ],
     },
-    # MAYBE-DISABLE: use_2to3
-    use_2to3= bool(python_version >= 3.0),
+    # DISABLED: use_2to3= bool(python_version >= 3.0),
+    # DEPRECATED SINCE: setuptools v58.0.2 (2021-09-06)
     license="BSD",
     classifiers=[
         "Development Status :: 4 - Beta",
