Skip to content

Commit 23ccd8a

Browse files
authored
Revert "Removed < 1.66 for grpcio (#34196)"
This reverts commit 7b63aec.
1 parent 89240df commit 23ccd8a

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

sdks/python/setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -366,10 +366,9 @@ def get_portability_package_data():
366366
'dill>=0.3.1.1,<0.3.2',
367367
'fastavro>=0.23.6,<2',
368368
'fasteners>=0.3,<1.0',
369-
# any version between 1.68.0 and 1.73.0 is bad
370-
# external issue: https://github.com/grpc/grpc/issues/37710
371-
'grpcio>=1.33.1,<1.74.0,!=1.48.0,!=1.59.*,!=1.60.*,!=1.61.*,!=1.62.0,!=1.62.1,!=1.68.*,!=1.69.*,!=1.70.*,!=1.71.*,!=1.72.*,!=1.73.0; python_version <= "3.12"', # pylint: disable=line-too-long
372-
'grpcio>=1.73.1; python_version >= "3.13"',
369+
# TODO(https://github.com/grpc/grpc/issues/37710): Unpin grpc
370+
'grpcio>=1.33.1,<2,!=1.48.0,!=1.59.*,!=1.60.*,!=1.61.*,!=1.62.0,!=1.62.1,<1.66.0; python_version <= "3.12"', # pylint: disable=line-too-long
371+
'grpcio>=1.67.0; python_version >= "3.13"',
373372
'hdfs>=2.1.0,<3.0.0',
374373
'httplib2>=0.8,<0.23.0',
375374
'jsonschema>=4.0.0,<5.0.0',

sdks/python/tox.ini

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,6 @@ deps =
167167
pylint==2.17.5
168168
isort==4.2.15
169169
flake8==4.0.1
170-
# https://github.com/grpc/grpc/issues/37660: ignore pip check
171-
commands_pre =
172-
python --version
173-
pip --version
174-
# pip check
175-
bash {toxinidir}/scripts/run_tox_cleanup.sh
176170
commands =
177171
pylint --version
178172
time {toxinidir}/scripts/run_pylint.sh

0 commit comments

Comments
 (0)