File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ def wrapper(func):
387387 # https://docs.python.org/3/library/inspect.html#inspect.signature
388388 signature_kwargs : Mapping [str , Any ] = {"eval_str" : True }
389389 else :
390- signature_kwargs = {}
390+ signature_kwargs = {} # type: ignore
391391
392392 signature = inspect .signature (
393393 func ,
Original file line number Diff line number Diff line change 6969import bigframes .session
7070import bigframes .session ._io .bigquery
7171import bigframes .session .clients
72+ import bigframes .version
7273
7374try :
7475 import resource
@@ -838,6 +839,7 @@ def clean_up_by_session_id(
838839Index = bigframes .core .indexes .Index
839840MultiIndex = bigframes .core .indexes .MultiIndex
840841Series = bigframes .series .Series
842+ __version__ = bigframes .version .__version__
841843
842844# Other public pandas attributes
843845NamedAgg = namedtuple ("NamedAgg" , ["column" , "aggfunc" ])
@@ -911,6 +913,7 @@ def reset_session():
911913 "Index" ,
912914 "MultiIndex" ,
913915 "Series" ,
916+ "__version__" ,
914917 # Other public pandas attributes
915918 "NamedAgg" ,
916919 "options" ,
You can’t perform that action at this time.
0 commit comments