File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ def require_minimum_pandas_version():
118118 from distutils .version import LooseVersion
119119 import pandas
120120 if LooseVersion (pandas .__version__ ) < LooseVersion ('0.19.2' ):
121- raise ImportError ("Pandas >= 0.19.2 must be installed on calling Python process: %s "
122- % pandas .__version__ )
121+ raise ImportError ("Pandas >= 0.19.2 must be installed on calling Python process; "
122+ "however, your version was %s." % pandas .__version__ )
123123
124124
125125def require_minimum_pyarrow_version ():
@@ -128,5 +128,5 @@ def require_minimum_pyarrow_version():
128128 from distutils .version import LooseVersion
129129 import pyarrow
130130 if LooseVersion (pyarrow .__version__ ) < LooseVersion ('0.8.0' ):
131- raise ImportError ("pyarrow >= 0.8.0 must be installed on calling Python process: %s "
132- % pyarrow .__version__ )
131+ raise ImportError ("pyarrow >= 0.8.0 must be installed on calling Python process; "
132+ "however, your version was %s." % pyarrow .__version__ )
You can’t perform that action at this time.
0 commit comments