Address review comments

pull/23243/head
Richard Belleville 4 years ago
parent 98bb4b6124
commit 4fcf9d01d2
  1. 4
      src/python/grpcio/commands.py
  2. 2
      tools/distrib/install_all_python_modules.sh

@ -300,13 +300,13 @@ class Clean(setuptools.Command):
description = 'Clean build artifacts.'
user_options = []
_FILE_PATTERNS = [
_FILE_PATTERNS = (
'python_build',
'src/python/grpcio/__pycache__/',
'src/python/grpcio/grpc/_cython/cygrpc.cpp',
'src/python/grpcio/grpc/_cython/*.so',
'src/python/grpcio/grpcio.egg-info/',
]
)
_CURRENT_DIRECTORY = os.path.normpath(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../.."))

@ -21,7 +21,7 @@ BASEDIR=$(dirname "$0")
BASEDIR=$(realpath "$BASEDIR")/../..
(cd "$BASEDIR";
pip install cython;
pip install --upgrade cython;
python setup.py install;
pushd tools/distrib/python/grpcio_tools;
../make_grpcio_tools.py

Loading…
Cancel
Save