Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sdks/go/test/run_validatesrunner_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ if [[ "$RUNNER" == "flink" || "$RUNNER" == "spark" || "$RUNNER" == "samza" || "$
--expansion-port 0 \
--artifact-port 0 &
elif [[ "$RUNNER" == "portable" ]]; then
export GRPC_VERBOSITY=debug
export GRPC_TRACE=all,-timer,-timer_check
python3 \
-m apache_beam.runners.portability.local_job_service_main \
--port $JOB_PORT &
Expand Down
8 changes: 6 additions & 2 deletions sdks/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,12 @@ def get_portability_package_data():
'cloudpickle~=2.2.1',
'fastavro>=0.23.6,<2',
'fasteners>=0.3,<1.0',
# TODO(https://github.com/grpc/grpc/issues/37710): Unpin grpc
'grpcio>=1.33.1,<2,!=1.48.0,!=1.59.*,!=1.60.*,!=1.61.*,!=1.62.0,!=1.62.1,<1.66.0', # pylint: disable=line-too-long
# NOTE(https://github.com/grpc/grpc/issues/37710):
# Some grpc 1.66.0+ versions have a regression,
# which might not be reproducible in newer versions.
# internal bug number: 372274680
# external issue: https://github.com/grpc/grpc/issues/37710
'grpcio>=1.33.1,<1.71,!=1.48.0,!=1.59.*,!=1.60.*,!=1.61.*,!=1.62.0,!=1.62.1', # pylint: disable=line-too-long
'hdfs>=2.1.0,<3.0.0',
'httplib2>=0.8,<0.23.0',
'jsonschema>=4.0.0,<5.0.0',
Expand Down
6 changes: 6 additions & 0 deletions sdks/python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ deps =
pylint==2.17.5
isort==4.2.15
flake8==4.0.1
# https://github.com/grpc/grpc/issues/37660: ignore pip check
commands_pre =
python --version
pip --version
# pip check
bash {toxinidir}/scripts/run_tox_cleanup.sh
commands =
pylint --version
time {toxinidir}/scripts/run_pylint.sh
Expand Down
Loading