Skip to content

Commit e88da14

Browse files
committed
fix import ordering
1 parent ff370ca commit e88da14

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sdks/python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,8 @@ def get_portability_package_data():
381381
# TODO(https://github.com/grpc/grpc/issues/37710): Unpin grpc
382382
'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
383383
'grpcio>=1.67.0; python_version >= "3.13"',
384+
'grpcio-status<1.63.0; python_version < "3.13"',
385+
'grpcio-tools<1.66.0; python_version < "3.13"',
384386
'httplib2>=0.8,<0.23.0',
385387
'jsonpickle>=3.0.0,<4.0.0',
386388
# numpy can have breaking changes in minor versions.
@@ -410,8 +412,6 @@ def get_portability_package_data():
410412
'zstandard>=0.18.0,<1',
411413
'pyyaml>=3.12,<7.0.0',
412414
'beartype>=0.21.0,<0.23.0',
413-
'grpcio-status<1.63.0; python_version < "3.13"',
414-
'grpcio-tools<1.66.0; python_version < "3.13"',
415415
# Dynamic dependencies must be specified in a separate list, otherwise
416416
# Dependabot won't be able to parse the main list. Any dynamic
417417
# dependencies will not receive updates from Dependabot.

0 commit comments

Comments
 (0)