Include re2 in source wheel && solve the missing --all complain

pull/23552/head
Lidi Zheng 4 years ago
parent f87e635d2d
commit 9a54627c0b
  1. 1
      PYTHON-MANIFEST.in
  2. 6
      src/python/grpcio/commands.py

@ -8,6 +8,7 @@ graft third_party/abseil-cpp/absl
graft third_party/address_sorting graft third_party/address_sorting
graft third_party/boringssl-with-bazel graft third_party/boringssl-with-bazel
graft third_party/cares graft third_party/cares
graft third_party/re2
graft third_party/upb graft third_party/upb
graft third_party/zlib graft third_party/zlib
include src/python/grpcio/_parallel_compile_patch.py include src/python/grpcio/_parallel_compile_patch.py

@ -298,7 +298,9 @@ class Clean(setuptools.Command):
"""Command to clean build artifacts.""" """Command to clean build artifacts."""
description = 'Clean build artifacts.' description = 'Clean build artifacts.'
user_options = [] user_options = [
('all', 'a', 'a phony flag to allow our script to continue'),
]
_FILE_PATTERNS = ( _FILE_PATTERNS = (
'python_build', 'python_build',
@ -311,7 +313,7 @@ class Clean(setuptools.Command):
os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../..")) os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../.."))
def initialize_options(self): def initialize_options(self):
pass self.all = False
def finalize_options(self): def finalize_options(self):
pass pass

Loading…
Cancel
Save