File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 99np_version_under1p19 = _nlv < Version ("1.19" )
1010np_version_under1p20 = _nlv < Version ("1.20" )
1111np_version_under1p22 = _nlv < Version ("1.22" )
12- np_version_is1p22 = _nlv = = Version ("1.22" )
12+ np_version_gte1p22 = _nlv > = Version ("1.22" )
1313is_numpy_dev = _nlv .dev is not None
1414_min_numpy_ver = "1.18.5"
1515
Original file line number Diff line number Diff line change 33import numpy as np
44import pytest
55
6- from pandas .compat .numpy import np_version_is1p22
6+ from pandas .compat .numpy import np_version_gte1p22
77import pandas .util ._test_decorators as td
88
99import pandas as pd
@@ -262,7 +262,7 @@ def test_alignment_deprecation_many_inputs(request):
262262 vectorize ,
263263 )
264264
265- if np_version_is1p22 :
265+ if np_version_gte1p22 :
266266 mark = pytest .mark .xfail (
267267 reason = "ufunc 'my_ufunc' did not contain a loop with signature matching "
268268 "types" ,
You can’t perform that action at this time.
0 commit comments