From de9436143e50ce11d9db0418e652057a0f34ddd2 Mon Sep 17 00:00:00 2001 From: "Laszlo Boszormenyi (GCS)" Date: Sun, 25 Sep 2022 19:03:42 +0100 Subject: [PATCH] import setuptools first Forwarded: not-needed Last-Update: 2022-09-25 Module setuptools needs to be imported before distutils. Gbp-Pq: Name setuptools.patch --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8fac99cf..c0129fc4 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. """A setup module for the GRPC Python package.""" +import setuptools from distutils import cygwinccompiler from distutils import extension as _extension from distutils import util @@ -25,7 +26,6 @@ import shutil import sys import sysconfig -import setuptools from setuptools.command import egg_info import subprocess -- 2.30.2