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 3030 - name : Install numpy from PyPI
3131 if : matrix.numpy-version != 'nightly'
3232 run : |
33- pip install "numpy==${{ matrix.numpy-verson }}"
33+ pip install "numpy==${{ matrix.numpy-version }}"
3434 - name : Install asciidtype
3535 working-directory : asciidtype
3636 run : |
Original file line number Diff line number Diff line change @@ -77,7 +77,8 @@ def test_unsupported_astype(dtype):
7777 np .array (QuadPrecision (1 )).astype (dtype , casting = "unsafe" )
7878
7979
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" )
8182def test_same_value_cast ():
8283 a = np .arange (30 , dtype = np .float32 )
8384 # upcasting can never fail
You can’t perform that action at this time.
0 commit comments