Merge pull request #23718 from lidizheng/setup-warning

Resolve the user warning generated by our setup.py
pull/23729/head
Lidi Zheng 5 years ago committed by GitHub
commit 0723f806a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      setup.py

@ -12,6 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
"""A setup module for the GRPC Python package."""
# setuptools need to be imported before distutils. Otherwise it might lead to
# undesirable behaviors or errors.
import setuptools
from distutils import cygwinccompiler
from distutils import extension as _extension
from distutils import util
@ -25,7 +30,6 @@ import shutil
import sys
import sysconfig
import setuptools
from setuptools.command import egg_info
import subprocess

Loading…
Cancel
Save