File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
np_version_under1p19 = _nlv < Version ("1.19" )
10
10
np_version_under1p20 = _nlv < Version ("1.20" )
11
11
np_version_under1p22 = _nlv < Version ("1.22" )
12
- np_version_is1p22 = _nlv = = Version ("1.22" )
12
+ np_version_gte1p22 = _nlv > = Version ("1.22" )
13
13
is_numpy_dev = _nlv .dev is not None
14
14
_min_numpy_ver = "1.18.5"
15
15
Original file line number Diff line number Diff line change 3
3
import numpy as np
4
4
import pytest
5
5
6
- from pandas .compat .numpy import np_version_is1p22
6
+ from pandas .compat .numpy import np_version_gte1p22
7
7
import pandas .util ._test_decorators as td
8
8
9
9
import pandas as pd
@@ -262,7 +262,7 @@ def test_alignment_deprecation_many_inputs(request):
262
262
vectorize ,
263
263
)
264
264
265
- if np_version_is1p22 :
265
+ if np_version_gte1p22 :
266
266
mark = pytest .mark .xfail (
267
267
reason = "ufunc 'my_ufunc' did not contain a loop with signature matching "
268
268
"types" ,
You can’t perform that action at this time.
0 commit comments