From: Laszlo Boszormenyi (GCS) Date: Sun, 25 Sep 2022 18:03:42 +0000 (+0100) Subject: import setuptools first X-Git-Tag: archive/raspbian/1.30.2-4+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=de9436143e50ce11d9db0418e652057a0f34ddd2;p=grpc.git import setuptools first Forwarded: not-needed Last-Update: 2022-09-25 Module setuptools needs to be imported before distutils. Gbp-Pq: Name setuptools.patch --- 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