2525 os .path .join (os .path .dirname (__file__ ), '..' ))
2626PROTOS_DIR = os .path .join (ROOT_DIR , 'googleapis-pb' )
2727PROTO_PATH = os .path .join (PROTOS_DIR , 'google' , 'datastore' ,
28- 'v1beta3 ' , 'datastore.proto' )
28+ 'v1 ' , 'datastore.proto' )
2929GRPC_ONLY_FILE = os .path .join (ROOT_DIR , 'gcloud' , 'datastore' ,
3030 '_generated' , 'datastore_grpc_pb2.py' )
3131GRPCIO_VIRTUALENV = os .environ .get ('GRPCIO_VIRTUALENV' , 'protoc' )
@@ -39,7 +39,7 @@ def get_pb2_contents_with_grpc():
3939 """
4040 temp_dir = tempfile .mkdtemp ()
4141 generated_path = os .path .join (temp_dir , 'google' , 'datastore' ,
42- 'v1beta3 ' , 'datastore_pb2.py' )
42+ 'v1 ' , 'datastore_pb2.py' )
4343 try :
4444 return_code = subprocess .call ([
4545 '%s/bin/python' % GRPCIO_VIRTUALENV ,
@@ -69,7 +69,7 @@ def get_pb2_contents_without_grpc():
6969 """
7070 temp_dir = tempfile .mkdtemp ()
7171 generated_path = os .path .join (temp_dir , 'google' , 'datastore' ,
72- 'v1beta3 ' , 'datastore_pb2.py' )
72+ 'v1 ' , 'datastore_pb2.py' )
7373 try :
7474 return_code = subprocess .call ([
7575 '%s/bin/python' % GRPCIO_VIRTUALENV ,
0 commit comments