Skip to content
Open
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: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ bazel_dep(name = "yaml-cpp", version = "0.9.0", dev_dependency = True)

bazel_dep(name = "rules_python", version = "2.0.2")

DEFAULT_PYTHON_VERSION = "3.12"
DEFAULT_PYTHON_VERSION = "3.11"

PYTHON_VERSIONS = [
"3.10",
Expand Down
3 changes: 2 additions & 1 deletion src/python/grpcio_tests/tests/qps/qps_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@

import argparse
import logging
import sys
import time

import grpc
import sys

print("****Python version:", sys.version_info)

from src.proto.grpc.testing import worker_service_pb2_grpc
Expand Down
1 change: 1 addition & 0 deletions src/python/grpcio_tests/tests_aio/benchmark/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import asyncio
import logging
import sys

print("****Python version:", sys.version_info)

from grpc.experimental import aio
Expand Down