File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 30
30
- name : Install numpy from PyPI
31
31
if : matrix.numpy-version != 'nightly'
32
32
run : |
33
- pip install "numpy==${{ matrix.numpy-verson }}"
33
+ pip install "numpy==${{ matrix.numpy-version }}"
34
34
- name : Install asciidtype
35
35
working-directory : asciidtype
36
36
run : |
Original file line number Diff line number Diff line change @@ -77,7 +77,8 @@ def test_unsupported_astype(dtype):
77
77
np .array (QuadPrecision (1 )).astype (dtype , casting = "unsafe" )
78
78
79
79
80
- @pytest .mark .skip (np_major < 2 or (np_major == 2 and np_minor < 4 ))
80
+ @pytest .mark .skipif (np_major < 2 or (np_major == 2 and np_minor < 4 ),
81
+ reason = "numpy version>2.4 required for test" )
81
82
def test_same_value_cast ():
82
83
a = np .arange (30 , dtype = np .float32 )
83
84
# upcasting can never fail
You can’t perform that action at this time.
0 commit comments